Skip to content

Commit

Permalink
Release v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
samrg472 committed Nov 29, 2019
1 parent 410e402 commit c233405
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

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

7 changes: 5 additions & 2 deletions RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
All crates must have the same version number when creating a release. This
simplifies documenting any changes.

# Unreleased
# Version 0.2.0 (2019-11-29)

This release improves the networking protocol and allows eliminating an
unnecessary round-trip RPC call when synchronizing blocks.

- Network protocol supports setting the block filter with an empty hash set to
retrieve only block headers.
Expand All @@ -13,7 +16,7 @@ simplifies documenting any changes.
full blocks when necessary.
- Add GetBlockRange net API to stream back a range of blocks to the client. This
is more efficient than naively looping GetBlock requests to the server.
- Use a bounded sender when sending network messages for back pressure control
- Use a bounded sender when sending network messages for back pressure control.

### Breaking changes

Expand Down
2 changes: 1 addition & 1 deletion crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "godcoin-cli"
version = "0.1.0"
version = "0.2.0"
edition = "2018"
authors = ["Samuel Grenier <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion crates/godcoin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "godcoin"
version = "0.1.0"
version = "0.2.0"
edition = "2018"
authors = ["Samuel Grenier <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion crates/server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "godcoin-server"
version = "0.1.0"
version = "0.2.0"
edition = "2018"
authors = ["Samuel Grenier <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit c233405

Please sign in to comment.