Skip to content

Commit

Permalink
version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mkg20001 committed Apr 2, 2024
1 parent 88d7c01 commit 6a12d3e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace: mgit_at
name: nix_unify
version: 0.3.1
version: 0.4.0
readme: README.md
authors:
- Maciej Krüger (github.com/mkg20001)
Expand Down
12 changes: 12 additions & 0 deletions new-version.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash

set -euxo pipefail

v="$1"

sed "s|version: .*|version: $v|" -i galaxy.yml
git add galaxy.yml
git commit -m "version $v"
git tag "v$v"
git push
git push origin "v$v"

0 comments on commit 6a12d3e

Please sign in to comment.