Skip to content

Commit

Permalink
Test 0.5.4rc1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ei-grad committed Sep 10, 2024
1 parent 9848a16 commit 4584000
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
github-release:
name: Release on GitHub
needs: test
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
if: github.event_name == 'push' && startsWith(github.ref, 'refs/heads/test-v')
runs-on: ubuntu-latest
environment:
name: GitHub
Expand All @@ -87,7 +87,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Extract Version from Tag
run: echo "VERSION_FROM_GIT_REF=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV
run: echo "VERSION_FROM_GIT_REF=${GITHUB_REF#refs/heads/test-v}" >> $GITHUB_ENV
- name: Extract Version from pyproject.toml
run: |
pip install toml
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file.

## [0.5.4] - 2024-09-10
## [0.5.4rc1] - 2024-09-10
### Packaging
- Check consistency between tag version and `pyproject.toml` version.
- Added extraction of changelog content for release notes from `CHANGELOG.md`.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "flask-shell-ipython"
version = "0.5.3"
version = "0.5.4rc1"
description = "Replace default `flask shell` command by similar command running IPython."
readme = "README.md"
readme-content-type = "text/markdown"
Expand Down

0 comments on commit 4584000

Please sign in to comment.