Skip to content

Commit 29d4d31

Browse files
committed
Bump version to v0.1.0 for release
1 parent 284e5c8 commit 29d4d31

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,5 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## Unreleased
9+
10+
## [v0.1.0](https://github.com/replane-dev/replane-python/releases/tag/v0.1.0) - 2025-12-20

scripts/release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
set -e
44

5-
TAG=$(python -c 'from replane.version import VERSION; print("v" + VERSION)')
5+
TAG=$(python3.10 -c 'from replane.version import VERSION; print("v" + VERSION)')
66

77
read -p "Creating new release for $TAG. Do you want to continue? [Y/n] " prompt
88

99
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]; then
10-
python scripts/prepare_changelog.py
10+
python3.10 scripts/prepare_changelog.py
1111
git add -A
1212
git commit -m "Bump version to $TAG for release" || true && git push
1313
echo "Creating new git tag $TAG"

0 commit comments

Comments
 (0)