Skip to content

Commit

Permalink
Fix token (#2027)
Browse files Browse the repository at this point in the history
### What kind of change does this PR introduce?

* Fixes a misconfigured token
* Sets the version to the final release

### Does this PR introduce a breaking change?

No.
  • Loading branch information
Zeitsperre authored Dec 16, 2024
2 parents 26f6f0d + e9a3e10 commit 7af92dd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bump-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,4 +88,4 @@ jobs:
with:
force: false
branch: ${{ github.ref }}
github_token: '${{ token_generator.outputs.token }}'
github_token: ${{ steps.token_generator.outputs.token }}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ target-version = [
]

[tool.bumpversion]
current_version = "0.54.0-dev.0"
current_version = "0.54.0"
commit = true
commit_args = "--no-verify --signoff"
tag = false
Expand Down
2 changes: 1 addition & 1 deletion src/xclim/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

__author__ = """Travis Logan"""
__email__ = "[email protected]"
__version__ = "0.54.0-dev.0"
__version__ = "0.54.0"


with _resources.as_file(_resources.files("xclim.data")) as _module_data:
Expand Down

0 comments on commit 7af92dd

Please sign in to comment.