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 22, 2024
1 parent 96521ee commit cb32610
Show file tree
Hide file tree
Showing 3 changed files with 15 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}}
5 changes: 5 additions & 0 deletions protocol/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# v0.4.0

* Adds the `AsyncProtocol` high level interface for less boilerplate integration when using an async runtime (e.g. Tokio). Codes against the `futures-rs` traits, so any runtime which is compatible with those should be supported.
* Aync read functions should now be cancellation safe.
* The high level `Io` variant of the `ProtocolError` exposes if it is worth retrying with the V1 protocol with the new `` type.
Empty file added proxy/CHANGELOG.md
Empty file.

0 comments on commit cb32610

Please sign in to comment.