Skip to content

Commit

Permalink
Merge pull request #444 from tox-rs/release1.1.0
Browse files Browse the repository at this point in the history
Release 0.1.1
  • Loading branch information
kpp authored Dec 27, 2020
2 parents 0a930cd + aeb9b77 commit 9ead890
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 14 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
8 changes: 4 additions & 4 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
3 changes: 2 additions & 1 deletion tox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tox"
version = "0.1.0"
version = "0.1.1"
authors = [
"Zetok Zalbavar <[email protected]>",
"Roman Proskuryakov <[email protected]>",
Expand Down Expand Up @@ -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" }
1 change: 1 addition & 0 deletions tox/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
2 changes: 1 addition & 1 deletion tox_binary_io/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tox_binary_io"
version = "0.1.0"
version = "0.1.1"
authors = [
"Zetok Zalbavar <[email protected]>",
"Roman Proskuryakov <[email protected]>",
Expand Down
8 changes: 4 additions & 4 deletions tox_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tox_core"
version = "0.1.0"
version = "0.1.1"
authors = [
"Zetok Zalbavar <[email protected]>",
"Roman Proskuryakov <[email protected]>",
Expand All @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion tox_core/src/dht/server_ext.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ mod tests {

futures::select! {
res = client_future.fuse() => res.unwrap(),
res = server_future.fuse() => (),
res = server_future.fuse() => res.unwrap(),
};
}
}
2 changes: 1 addition & 1 deletion tox_crypto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tox_crypto"
version = "0.1.0"
version = "0.1.1"
authors = [
"Zetok Zalbavar <[email protected]>",
"Roman Proskuryakov <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion tox_encryptsave/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tox_encryptsave"
version = "0.1.0"
version = "0.1.1"
authors = [
"Zetok Zalbavar <[email protected]>",
"Roman Proskuryakov <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion tox_packet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tox_packet"
version = "0.1.0"
version = "0.1.1"
authors = [
"Zetok Zalbavar <[email protected]>",
"Roman Proskuryakov <[email protected]>",
Expand Down

0 comments on commit 9ead890

Please sign in to comment.