Skip to content

Commit 918ff8a

Browse files
Bump version to 0.6.5a0 and use PAT for auto-release
1 parent 53165b2 commit 918ff8a

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/auto-release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ jobs:
2424
uses: actions/checkout@v6
2525
with:
2626
fetch-depth: 0
27-
token: ${{ secrets.GITHUB_TOKEN }}
27+
# Use PAT to bypass branch protection rules
28+
# Create a Fine-grained PAT with 'Contents: Read and write' permission
29+
# and add it as repository secret named RELEASE_PAT
30+
token: ${{ secrets.RELEASE_PAT }}
2831

2932
- name: Set up Python
3033
uses: actions/setup-python@v6

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 = "hedit"
7-
version = "0.6.5.dev3"
7+
version = "0.6.5a0"
88
description = "Multi-agent system for HED annotation generation and validation"
99
readme = "PKG_README.md"
1010
requires-python = ">=3.12"

src/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Version information for HEDit."""
22

3-
__version__ = "0.6.5.dev3"
4-
__version_info__ = (0, 6, 5, "dev3")
3+
__version__ = "0.6.5a0"
4+
__version_info__ = (0, 6, 5, "alpha")
55

66

77
def get_version() -> str:

0 commit comments

Comments
 (0)