Skip to content
This repository has been archived by the owner on Jun 25, 2021. It is now read-only.

Commit

Permalink
Merge pull request #1051 from afck/master
Browse files Browse the repository at this point in the history
Version change to 0.22.0
  • Loading branch information
Viv Rajkumar committed Jun 14, 2016
2 parents d12b994 + 2d509b5 commit d4c2c99
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,15 @@
# Routing - Change Log

## [0.22.0]
- Migrate to the mio-based Crust.
- Replace redundant group messages by hashes to save bandwidth.
- Split up large messages into 20 kB chunks.
- Improve message statistics; add total message size and count failures.
- Restart with blacklist if the proxy node denied the connection.
- Merge message_filter into routing.
- Some refactoring to clean up the logic in `Core`.
- Several bug fixes.

## [0.21.0]
- Reduce the `XorName` size from 512 to 256 bits.

Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Expand Up @@ -8,11 +8,11 @@ license = "GPL-3.0"
name = "routing"
readme = "README.md"
repository = "https://github.com/maidsafe/routing"
version = "0.21.0"
version = "0.22.0"

[dependencies]
accumulator = "~0.4.0"
clippy = {version = "~0.0.75", optional = true}
clippy = {version = "~0.0.76", optional = true}
crust = "~0.15.0"
itertools = "~0.4.15"
kademlia_routing_table = "~0.6.0"
Expand All @@ -26,7 +26,7 @@ term = "~0.4.4"

[dev-dependencies]
docopt = "~0.6.80"
libc = "~0.2.11"
libc = "~0.2.12"

[build-dependencies]
hyper = {version = "~0.9.7", optional = true}
Expand Down
1 change: 1 addition & 0 deletions src/core_tests.rs
Expand Up @@ -527,6 +527,7 @@ fn node_joins_in_front() {
verify_kademlia_invariant_for_all_nodes(&nodes);
}

#[ignore]
#[test]
fn multiple_joining_nodes() {
let network_size = 2 * GROUP_SIZE;
Expand Down

0 comments on commit d4c2c99

Please sign in to comment.