Skip to content

Commit 699da27

Browse files
committed
Bump version to 0.1.0b5 and fix documentation links
1 parent c626eb6 commit 699da27

7 files changed

Lines changed: 22 additions & 15 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.0b5] - 2026-03-27
11+
12+
### Changed
13+
14+
- Bumped package version to 0.1.0b5.
15+
- Documentation: standalone installer links point to the GitHub releases page so beta/pre-release assets are visible (not only `/releases/latest`); filename examples updated to v0.1.0b5.
16+
1017
## [0.1.0b1] - 2026-03-03
1118

1219
> **First beta release.** Core GUI, all 15 analysis modules, batch processing, NWB export, and plugin interface are functional. Issued as a pre-release for wider testing before a stable 0.1.0 tag.

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ authors:
1212
- family-names: "Shahul"
1313
given-names: "Anzal K"
1414
email: "anzal.ks@gmail.com"
15-
version: "0.1.0b1"
16-
date-released: "2026-03-03"
15+
version: "0.1.0b5"
16+
date-released: "2026-03-27"
1717
license: "AGPL-3.0-or-later"
1818
repository-code: "https://github.com/anzalks/synaptipy"
1919
keywords:

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,12 +121,12 @@ Synaptipy is available both as a standalone application and as a Python package.
121121

122122
You do not need to install Python or any dependencies to run Synaptipy. We provide pre-compiled, standalone applications for all major operating systems.
123123

124-
[Download the Latest Release Here](https://github.com/OWNER/Synaptipy/releases/latest)
124+
[Download the Beta Release Here](https://github.com/anzalks/Synaptipy/releases)
125125

126126
Choose the correct file for your operating system from the release assets:
127-
* **Windows:** Download `Synaptipy_Setup_vX.X.X.exe` and run the installer.
128-
* **macOS:** Download `Synaptipy_vX.X.X.dmg`, open the disk image, and drag Synaptipy to your Applications folder.
129-
* **Linux:** Download `Synaptipy-vX.X.X-x86_64.AppImage`, make the file executable (`chmod +x Synaptipy-vX.X.X-x86_64.AppImage`), and run it directly.
127+
* **Windows:** Download `Synaptipy_Setup_v0.1.0b5.exe` and run the installer.
128+
* **macOS:** Download `Synaptipy_v0.1.0b5.dmg`, open the disk image, and drag Synaptipy to your Applications folder.
129+
* **Linux:** Download `Synaptipy-v0.1.0b5-x86_64.AppImage`, make the file executable (`chmod +x Synaptipy-v0.1.0b5-x86_64.AppImage`), and run it directly.
130130

131131
### Python Package Installation
132132
For researchers who wish to use Synaptipy programmatically or develop custom plugins, you can install it via `conda` / `pip`:

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@
5656
try:
5757
from Synaptipy import __version__ as _version # noqa: E402
5858
release = _version
59-
version = ".".join(_version.split(".")[:2])
59+
version = _version
6060
except Exception:
61-
version = "0.1"
62-
release = "0.1.0b1"
61+
version = "0.1.0b5"
62+
release = "0.1.0b5"
6363

6464
# ---------------------------------------------------------------------------
6565
# General configuration

docs/manuals/CROSS_PLATFORM_SETUP.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,13 @@ dependencies:
8383

8484
The easiest way to use Synaptipy is to download the standalone application. No Python environment setup is required.
8585

86-
[Download the Latest Release Here](https://github.com/OWNER/Synaptipy/releases/latest)
86+
[Download the Beta Release Here](https://github.com/anzalks/Synaptipy/releases)
8787

8888
Please download the appropriate file for your system:
8989

90-
* **Windows:** Download `Synaptipy_Setup_vX.X.X.exe` and follow the installation wizard.
91-
* **macOS:** Download `Synaptipy_vX.X.X.dmg`. Open the file and drag the Synaptipy application into your Applications folder.
92-
* **Linux:** Download `Synaptipy-vX.X.X-x86_64.AppImage`. You must make the file executable before running it. You can do this by right-clicking the file, navigating to Properties -> Permissions, and checking "Allow executing file as program", or via terminal: `chmod +x Synaptipy-vX.X.X-x86_64.AppImage`.
90+
* **Windows:** Download `Synaptipy_Setup_v0.1.0b5.exe` and follow the installation wizard.
91+
* **macOS:** Download `Synaptipy_v0.1.0b5.dmg`. Open the file and drag the Synaptipy application into your Applications folder.
92+
* **Linux:** Download `Synaptipy-v0.1.0b5-x86_64.AppImage`. You must make the file executable before running it. You can do this by right-clicking the file, navigating to Properties -> Permissions, and checking "Allow executing file as program", or via terminal: `chmod +x Synaptipy-v0.1.0b5-x86_64.AppImage`.
9393

9494
**Troubleshooting Notes:**
9595
* **macOS:** Because the application is not currently signed via the Apple Developer Program, macOS Gatekeeper may block it the first time you try to open it. To bypass this, right-click (or Control-click) the Synaptipy app in your Applications folder and select "Open" from the context menu.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "Synaptipy"
7-
version = "0.1.0b1"
7+
version = "0.1.0b5"
88
description = "Electrophysiology Visualization Suite"
99
authors = [
1010
{name = "Anzal K Shahul", email = "anzal.ks@gmail.com"}

src/Synaptipy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"""
88

99
# PEP 396 style version marker
10-
__version__ = "0.1.0b1"
10+
__version__ = "0.1.0b5"
1111
__author__ = "Anzal K Shahul"
1212
__email__ = "anzal.ks@gmail.com"
1313
__license__ = "AGPL-3.0-or-later"

0 commit comments

Comments
 (0)