Skip to content

Commit

Permalink
Increment to v2.0.0 (#401)
Browse files Browse the repository at this point in the history
  • Loading branch information
maddenp-noaa authored Jan 26, 2024
1 parent 11e2f5c commit 9b4be1f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/tag-check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -ux
f=recipe/meta.json
tag=v$(jq -r .version $f)-$(jq -r .buildnum $f)
tag=v$(jq -r .version $f)+$(jq -r .buildnum $f)
if git ls-remote --tags origin | grep -q "/$tag$"; then
(set +x && echo TAG $tag ALREADY EXISTS)
exit 1
Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/tag-create.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

set -ux
f=recipe/meta.json
tag=v$(jq -r .version $f)-$(jq -r .buildnum $f)
tag=v$(jq -r .version $f)+$(jq -r .buildnum $f)
git tag $tag
git push --tags
2 changes: 1 addition & 1 deletion recipe/meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@
"pyyaml =6.0.*"
]
},
"version": "1.1.0"
"version": "2.0.0"
}
2 changes: 1 addition & 1 deletion recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: uwtools
version: 1.1.0
version: 2.0.0
source:
path: ../src
build:
Expand Down

0 comments on commit 9b4be1f

Please sign in to comment.