Skip to content

Commit 9ead890

Browse files
authored
Merge pull request #444 from tox-rs/release1.1.0
Release 0.1.1
2 parents 0a930cd + aeb9b77 commit 9ead890

File tree

10 files changed

+22
-14
lines changed

10 files changed

+22
-14
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.1.1 (Dec 27, 2020)
2+
3+
* Fix bug in k-bucket eviction (#443)
4+
* Code cleanup (#441, #442)
5+
* Implement k-tree with force-k modification (#436)
6+
17
# 0.1.0 (Oct 7, 2020)
28

39
* Replace `parking_lot` mutex with `futures` mutex (#434)

examples/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ publish = false
55
edition = "2018"
66

77
[dev-dependencies]
8-
tox_binary_io = { version = "0.1.0", path = "../tox_binary_io", features = ["sodium"] }
9-
tox_crypto = { version = "0.1.0", path = "../tox_crypto" }
10-
tox_packet = { version = "0.1.0", path = "../tox_packet" }
11-
tox_core = { version = "0.1.0", path = "../tox_core" }
8+
tox_binary_io = { version = "0.1.1", path = "../tox_binary_io", features = ["sodium"] }
9+
tox_crypto = { version = "0.1.1", path = "../tox_crypto" }
10+
tox_packet = { version = "0.1.1", path = "../tox_packet" }
11+
tox_core = { version = "0.1.1", path = "../tox_core" }
1212

1313
log = "0.4"
1414
futures = { version = "0.3", default-features = false, features = ["std", "async-await"] }

tox/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tox"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = [
55
"Zetok Zalbavar <[email protected]>",
66
"Roman Proskuryakov <[email protected]>",
@@ -33,3 +33,4 @@ maintenance = { status = "actively-developed" }
3333
tox_packet = { version = "0.1.0", path = "../tox_packet" }
3434
tox_core = { version = "0.1.0", path = "../tox_core" }
3535
tox_encryptsave = { version = "0.1.0", path = "../tox_encryptsave" }
36+
tox_crypto = { version = "0.1.1", path = "../tox_crypto" }

tox/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
33
pub use tox_packet as packet;
44
pub use tox_core as core;
5+
pub use tox_crypto as crypto;
56
pub use tox_encryptsave as encryptsave;

tox_binary_io/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tox_binary_io"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = [
55
"Zetok Zalbavar <[email protected]>",
66
"Roman Proskuryakov <[email protected]>",

tox_core/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tox_core"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = [
55
"Zetok Zalbavar <[email protected]>",
66
"Roman Proskuryakov <[email protected]>",
@@ -17,9 +17,9 @@ license = "GPL-3.0+"
1717
edition = "2018"
1818

1919
[dependencies]
20-
tox_binary_io = { version = "0.1.0", path = "../tox_binary_io" }
21-
tox_crypto = { version = "0.1.0", path = "../tox_crypto" }
22-
tox_packet = { version = "0.1.0", path = "../tox_packet" }
20+
tox_binary_io = { version = "0.1.1", path = "../tox_binary_io" }
21+
tox_crypto = { version = "0.1.1", path = "../tox_crypto" }
22+
tox_packet = { version = "0.1.1", path = "../tox_packet" }
2323

2424
bytes = "0.5"
2525
futures = { version = "0.3", default-features = false, features = ["std", "async-await"] }

tox_core/src/dht/server_ext.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ mod tests {
159159

160160
futures::select! {
161161
res = client_future.fuse() => res.unwrap(),
162-
res = server_future.fuse() => (),
162+
res = server_future.fuse() => res.unwrap(),
163163
};
164164
}
165165
}

tox_crypto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tox_crypto"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = [
55
"Zetok Zalbavar <[email protected]>",
66
"Roman Proskuryakov <[email protected]>",

tox_encryptsave/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tox_encryptsave"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = [
55
"Zetok Zalbavar <[email protected]>",
66
"Roman Proskuryakov <[email protected]>",

tox_packet/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tox_packet"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = [
55
"Zetok Zalbavar <[email protected]>",
66
"Roman Proskuryakov <[email protected]>",

0 commit comments

Comments
 (0)