We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b99d7bb commit 830d6f2Copy full SHA for 830d6f2
1 file changed
steps_to_publish_new_version.sh
@@ -8,9 +8,9 @@ hatch env run -e py3.8 coverage report -- --format=total # Update total into RE
8
9
# Set new version number in pyproject.toml
10
git add pyproject.toml README.md
11
-git commit -m "Release v${hatch version}"
+git commit -m "Release v$(hatch version)"
12
git push
13
-git tag -a release-${hatch version} -m "Release v${hatch version}"
14
-git push origin release-${hatch version}
+git tag -a release-$(hatch version) -m "Release v$(hatch version)"
+git push origin release-$(hatch version)
15
16
# Really build and release it
0 commit comments