diff options
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rwxr-xr-x | release.sh | 1 |
3 files changed, 3 insertions, 2 deletions
@@ -392,7 +392,7 @@ dependencies = [ [[package]] name = "cas" -version = "0.0.1-a" +version = "0.0.2" dependencies = [ "async-graphql", "async-graphql-axum", @@ -1,6 +1,6 @@ [package] name = "cas" -version = "0.0.1-a" +version = "0.0.2" edition = "2021" authors = ["Santo Cariotti <santo@dcariotti.me>", "Luca Polese <luca.polese@studio.unibo.it>"] documentation = "https://cas-4.github.io/backend/cas/index.html" @@ -4,6 +4,7 @@ if [ $# -eq 0 ]; then fi sed -i "3s/.*/version = \"$1\"/" Cargo.toml +cargo c git add Cargo.* git commit -m "release: version $1" git tag -a "v$1" -m "Version $1" |