Skip to content

Commit

Permalink
chore: fix release instructions and tools (#8527)
Browse files Browse the repository at this point in the history
  • Loading branch information
mhofman authored Dec 7, 2023
1 parent 7153535 commit 82cced2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MAINTAINERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ prior=$(git tag -l | sed -ne 's!^@agoric/sdk@\([0-9]*\).*!\1!p' | sort -n | tail
SDKVER=$(( prior + 1 ))
git tag @agoric/sdk@$SDKVER
# Push the branch.
git push -u origin release-$now
git push -u origin prepare-release-$now
# Tell which packages have actual news.
scripts/have-news HEAD^ > have-news.md
```
Expand Down
2 changes: 1 addition & 1 deletion scripts/get-released-tags
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ otherTags=
if test -z "$cmd"; then
cmd=echo
fi
for tag in $(git tag -l | grep -E '@[.0-9]+$'); do
for tag in $(git tag -l --contains HEAD | grep -E '@[0-9.]+(-[^.]*\.[0-9.]+)?$'); do
case $tag in
@agoric/sdk@*) sdkTags="$sdkTags $tag" ;;
@agoric/cosmos@*)
Expand Down

0 comments on commit 82cced2

Please sign in to comment.