Skip to content

Commit

Permalink
bump version for release 0.6.3b2
Browse files Browse the repository at this point in the history
  • Loading branch information
alinelena committed Aug 1, 2024
1 parent a92a814 commit 69fa718
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "janus-core"
version = "0.6.3b0"
version = "0.6.3b2"
description = "Tools for machine learnt interatomic potentials"
authors = [
"Elliott Kasoar",
Expand Down
11 changes: 11 additions & 0 deletions release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/usr/bin/env bash

version=$1

sed -i "s;^version =.*;version = \"$version\";g" pyproject.toml

git add pyproject.toml
git commit -m "bump version for release $version"
git tag -f -a v$version -m "release $version"
git push
git push --tags

0 comments on commit 69fa718

Please sign in to comment.