diff --git a/CHANGELOG.md b/CHANGELOG.md index 940758ee4..325695fc6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.1.1 (Dec 27, 2020) + +* Fix bug in k-bucket eviction (#443) +* Code cleanup (#441, #442) +* Implement k-tree with force-k modification (#436) + # 0.1.0 (Oct 7, 2020) * Replace `parking_lot` mutex with `futures` mutex (#434) diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 82a3311ab..e3eccc6e5 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -5,10 +5,10 @@ publish = false edition = "2018" [dev-dependencies] -tox_binary_io = { version = "0.1.0", path = "../tox_binary_io", features = ["sodium"] } -tox_crypto = { version = "0.1.0", path = "../tox_crypto" } -tox_packet = { version = "0.1.0", path = "../tox_packet" } -tox_core = { version = "0.1.0", path = "../tox_core" } +tox_binary_io = { version = "0.1.1", path = "../tox_binary_io", features = ["sodium"] } +tox_crypto = { version = "0.1.1", path = "../tox_crypto" } +tox_packet = { version = "0.1.1", path = "../tox_packet" } +tox_core = { version = "0.1.1", path = "../tox_core" } log = "0.4" futures = { version = "0.3", default-features = false, features = ["std", "async-await"] } diff --git a/tox/Cargo.toml b/tox/Cargo.toml index 487380dac..becfbedcb 100644 --- a/tox/Cargo.toml +++ b/tox/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tox" -version = "0.1.0" +version = "0.1.1" authors = [ "Zetok Zalbavar ", "Roman Proskuryakov ", @@ -33,3 +33,4 @@ maintenance = { status = "actively-developed" } tox_packet = { version = "0.1.0", path = "../tox_packet" } tox_core = { version = "0.1.0", path = "../tox_core" } tox_encryptsave = { version = "0.1.0", path = "../tox_encryptsave" } +tox_crypto = { version = "0.1.1", path = "../tox_crypto" } diff --git a/tox/src/lib.rs b/tox/src/lib.rs index 6ac5b0542..ac2d99490 100644 --- a/tox/src/lib.rs +++ b/tox/src/lib.rs @@ -2,4 +2,5 @@ pub use tox_packet as packet; pub use tox_core as core; +pub use tox_crypto as crypto; pub use tox_encryptsave as encryptsave; diff --git a/tox_binary_io/Cargo.toml b/tox_binary_io/Cargo.toml index 5a80c5c73..bf79e4dd9 100644 --- a/tox_binary_io/Cargo.toml +++ b/tox_binary_io/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tox_binary_io" -version = "0.1.0" +version = "0.1.1" authors = [ "Zetok Zalbavar ", "Roman Proskuryakov ", diff --git a/tox_core/Cargo.toml b/tox_core/Cargo.toml index a9aedd699..82dd40f8a 100644 --- a/tox_core/Cargo.toml +++ b/tox_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tox_core" -version = "0.1.0" +version = "0.1.1" authors = [ "Zetok Zalbavar ", "Roman Proskuryakov ", @@ -17,9 +17,9 @@ license = "GPL-3.0+" edition = "2018" [dependencies] -tox_binary_io = { version = "0.1.0", path = "../tox_binary_io" } -tox_crypto = { version = "0.1.0", path = "../tox_crypto" } -tox_packet = { version = "0.1.0", path = "../tox_packet" } +tox_binary_io = { version = "0.1.1", path = "../tox_binary_io" } +tox_crypto = { version = "0.1.1", path = "../tox_crypto" } +tox_packet = { version = "0.1.1", path = "../tox_packet" } bytes = "0.5" futures = { version = "0.3", default-features = false, features = ["std", "async-await"] } diff --git a/tox_core/src/dht/server_ext.rs b/tox_core/src/dht/server_ext.rs index 39c084d91..e37171623 100644 --- a/tox_core/src/dht/server_ext.rs +++ b/tox_core/src/dht/server_ext.rs @@ -159,7 +159,7 @@ mod tests { futures::select! { res = client_future.fuse() => res.unwrap(), - res = server_future.fuse() => (), + res = server_future.fuse() => res.unwrap(), }; } } diff --git a/tox_crypto/Cargo.toml b/tox_crypto/Cargo.toml index f3221a334..7f279052a 100644 --- a/tox_crypto/Cargo.toml +++ b/tox_crypto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tox_crypto" -version = "0.1.0" +version = "0.1.1" authors = [ "Zetok Zalbavar ", "Roman Proskuryakov ", diff --git a/tox_encryptsave/Cargo.toml b/tox_encryptsave/Cargo.toml index 2ee929baf..f2b82bc91 100644 --- a/tox_encryptsave/Cargo.toml +++ b/tox_encryptsave/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tox_encryptsave" -version = "0.1.0" +version = "0.1.1" authors = [ "Zetok Zalbavar ", "Roman Proskuryakov ", diff --git a/tox_packet/Cargo.toml b/tox_packet/Cargo.toml index a68e32d13..bf33ad6d1 100644 --- a/tox_packet/Cargo.toml +++ b/tox_packet/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tox_packet" -version = "0.1.0" +version = "0.1.1" authors = [ "Zetok Zalbavar ", "Roman Proskuryakov ",