Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 600e04f46a | |||
| 085b69081b | |||
| b04e7be146 |
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
[tool.bumpversion]
|
[tool.bumpversion]
|
||||||
current_version = "0.3.19"
|
current_version = "0.3.20"
|
||||||
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
|
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
|
||||||
serialize = ["{major}.{minor}.{patch}"]
|
serialize = ["{major}.{minor}.{patch}"]
|
||||||
search = "{current_version}"
|
search = "{current_version}"
|
||||||
|
|||||||
@@ -122,7 +122,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
VERSION=$(uv version --short)
|
VERSION=$(uv version --short)
|
||||||
TAG="v$VERSION"
|
TAG="v$VERSION"
|
||||||
if git rev-parse "$TAG" >/dev/null 2>&1 && [ "$(git rev-parse "$TAG")" = "$(git rev-parse HEAD)" ]; then
|
if git rev-parse "$TAG" >/dev/null 2>&1 && [ "$(git rev-parse "$TAG^{commit}")" = "$(git rev-parse HEAD)" ]; then
|
||||||
git push --atomic origin HEAD:master "refs/tags/$TAG"
|
git push --atomic origin HEAD:master "refs/tags/$TAG"
|
||||||
else
|
else
|
||||||
echo "No new release commit/tag to push (already released, or nothing changed)"
|
echo "No new release commit/tag to push (already released, or nothing changed)"
|
||||||
|
|||||||
@@ -1,5 +1,11 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [0.3.20] - 2026-09-04
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Fix: dereference annotated tag to its commit before the push comparison
|
||||||
|
|
||||||
## [0.3.19] - 2026-09-04
|
## [0.3.19] - 2026-09-04
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ calorimeter showers.
|
|||||||
|
|
||||||
[](pyproject.toml)
|
[](pyproject.toml)
|
||||||
[](pyproject.toml)
|
[](pyproject.toml)
|
||||||
[](CHANGELOG.md)
|
[](CHANGELOG.md)
|
||||||
[](tests/)
|
[](tests/)
|
||||||
[](https://git.larsbogner.de/lars/giant/actions)
|
[](https://git.larsbogner.de/lars/giant/actions)
|
||||||
[](#license)
|
[](#license)
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "giant"
|
name = "giant"
|
||||||
version = "0.3.19"
|
version = "0.3.20"
|
||||||
description = "Geant4 step-function surrogate via conditional flow matching"
|
description = "Geant4 step-function surrogate via conditional flow matching"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.12"
|
requires-python = ">=3.12"
|
||||||
|
|||||||
Reference in New Issue
Block a user