Skip to content

Commit

Permalink
Merge pull request #90 from nyonson/versoin-zero-five
Browse files Browse the repository at this point in the history
  • Loading branch information
rustaceanrob authored Oct 31, 2024
2 parents df1f835 + 57e2ef3 commit 0471080
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
## Publish New Crate Versions

1. Update the version in each crate's Cargo.toml and ensure the Cargo.lock is updated as well.
2. Add an entry to each crate's CHANGELOG.md.
3. Commit Cargo and Changelog updates to the main branch.
4. Tag that commit for every crate e.g. `protocol-v0.5.0`. The justfile contains a recipe for this. Must have write permissions on the upstream repository.
5. Checkout the relevant tags and publish the crates.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions protocol/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# v0.5.0

* Replace the ownership-based interface of `AsyncProtocol` with mutable references which fit in the asynchronous ecosystem better.
* Add the `tokio` feature flag for easier asynchronous integration if caller is using the Tokio runtime.
* Fix a serialization bug in bitcoin network message.

# 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.
Expand Down
2 changes: 1 addition & 1 deletion protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bip324"
version = "0.4.0"
version = "0.5.0"
edition = "2021"
license-file = "LICENSE"
description = "Encrypted messaging over the Bitcoin P2P Protocol as specified by BIP 324"
Expand Down

0 comments on commit 0471080

Please sign in to comment.