-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.