Skip to content

Commit

Permalink
Add changelogs and tags
Browse files Browse the repository at this point in the history
  • Loading branch information
nyonson committed Oct 18, 2024
1 parent b7de828 commit 3b05cf2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
default:
@just --list

# Add a release tag and publish to the upstream remote. Need write privileges on the repository.
tag crate version remote="upstream":
# A release tag is specific to a crate so following the convention crate-version.
echo "Adding release tag {{crate}}-{{version}} and pushing to {{remote}}..."
# Annotated tag.
git tag -a {{crate}}-{{version}} -m "Release {{version}} for {{crate}}"
git push {{remote}} {{crate}}-{{version}}
Empty file added protocol/CHANGELOG.md
Empty file.
Empty file added proxy/CHANGELOG.md
Empty file.

0 comments on commit 3b05cf2

Please sign in to comment.