Skip to content

Commit c233405

Browse files
committed
Release v0.2.0
1 parent 410e402 commit c233405

File tree

5 files changed

+13
-10
lines changed

5 files changed

+13
-10
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

RELEASES.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
33
All crates must have the same version number when creating a release. This
44
simplifies documenting any changes.
55

6-
# Unreleased
6+
# Version 0.2.0 (2019-11-29)
7+
8+
This release improves the networking protocol and allows eliminating an
9+
unnecessary round-trip RPC call when synchronizing blocks.
710

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

1821
### Breaking changes
1922

crates/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "godcoin-cli"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2018"
55
authors = ["Samuel Grenier <samrg472@gmail.com>"]
66
license = "MIT"

crates/godcoin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "godcoin"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2018"
55
authors = ["Samuel Grenier <samrg472@gmail.com>"]
66
license = "MIT"

crates/server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "godcoin-server"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2018"
55
authors = ["Samuel Grenier <samrg472@gmail.com>"]
66
license = "MIT"

0 commit comments

Comments
 (0)