Skip to content

Commit cb3328d

Browse files
committed
0.5.0rc1 pre-release
1 parent 1e8d4f7 commit cb3328d

6 files changed

Lines changed: 10 additions & 9 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
id: prerelease
3636
run: |
3737
tag="${{ steps.tag.outputs.value }}"
38-
if echo "$tag" | grep -Eq '(a|b|rc)[0-9]+$'; then
38+
if echo "$tag" | grep -Eq '(a|b|rc)[0-9]*$'; then
3939
echo "value=true" >> "$GITHUB_OUTPUT"
4040
else
4141
echo "value=false" >> "$GITHUB_OUTPUT"

README.md

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

99
A modular toolkit for preclinical MRI: from raw studies to reproducible outputs.
1010

11-
BrkRaw (v0.5.0rc) converts raw data into standardized, neuroimaging-ready
11+
BrkRaw (v0.5.0rc1) converts raw data into standardized, neuroimaging-ready
1212
datasets, with extensible rules/specs and plugin hooks.
1313

1414
- Documentation: [brkraw.github.io](https://brkraw.github.io/)

RELEASE_NOTES.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
# Release v0.5.0rc
1+
# Release v0.5.0rc1
22

33
Date: 2026-01-07
4-
Changes since 0.5.0b1
4+
Changes since 0.5.0rc
55

6+
- 0.5.0rc release (1e8d4f7)
67
- docs: ignore MD041 in README for logo header (84584fb)
78
- docs: keep README first line as H1 (8657f48)
89
- docs: polish README with logo and links (057b924)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "brkraw"
77
dynamic = ["version"]
88
description = "Toolkit for loading Bruker Paravision datasets, mapping metadata, and exporting NIfTI"
99
classifiers = [
10-
'Development Status :: 5 - Production/Stable',
10+
'Development Status :: 4 - Beta',
1111
"Intended Audience :: Science/Research",
1212
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
1313
"Natural Language :: English",

scripts/release_prep.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,11 @@ def update_pyproject_classifiers(status_label):
8383

8484
def determine_status(version):
8585
v = version.lower()
86-
if re.search(r"a\d+", v):
86+
if re.search(r"a\d*", v):
8787
return ("3 - Alpha", "alpha", False)
88-
if re.search(r"b\d+", v):
88+
if re.search(r"b\d*", v):
8989
return ("4 - Beta", "beta", False)
90-
if re.search(r"rc\d+", v):
90+
if re.search(r"rc\d*", v):
9191
return ("4 - Beta", "release candidate", False)
9292
return ("5 - Production/Stable", "stable", True)
9393

src/brkraw/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import annotations
22

3-
__version__ = '0.5.0rc'
3+
__version__ = '0.5.0rc1'
44
from .apps.loader import BrukerLoader
55

66

0 commit comments

Comments
 (0)