Skip to content

Commit

Permalink
Merge pull request #110 from nervosnetwork/release-0.2-alpha.2
Browse files Browse the repository at this point in the history
chore: release 0.2-alpha.2
  • Loading branch information
TheWaWaR authored Apr 15, 2019
2 parents 6ff259b + 6637313 commit 27129e3
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tentacle"
version = "0.2.0-alpha.1"
version = "0.2.0-alpha.2"
license = "MIT"
description = "Minimal implementation for a multiplexed p2p network framework."
authors = ["piaoliu <[email protected]>", "Nervos Core Dev <[email protected]>"]
Expand All @@ -12,8 +12,8 @@ categories = ["network-programming", "asynchronous"]
edition = "2018"

[dependencies]
yamux = { path = "yamux", version = "0.1.4", package = "tokio-yamux" }
secio = { path = "secio", version = "0.1.0", package = "tentacle-secio" }
yamux = { path = "yamux", version = "0.1.5", package = "tokio-yamux" }
secio = { path = "secio", version = "0.1.1", package = "tentacle-secio" }

futures = "0.1"
tokio = "0.1"
Expand Down
4 changes: 2 additions & 2 deletions protocols/discovery/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tentacle-discovery"
version = "0.1.0"
version = "0.2.0"
authors = ["Linfeng Qian <[email protected]>"]
license = "MIT"
description = "p2p discovery protocol main reference bitcoin"
Expand All @@ -10,7 +10,7 @@ categories = ["network-programming", "asynchronous"]
edition = "2018"

[dependencies]
p2p = { path = "../..", version = "0.2.0-alpha.1", package = "tentacle" }
p2p = { path = "../..", version = "0.2.0-alpha.2", package = "tentacle" }
bytes = "0.4"
byteorder = "1.2"
fnv = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions protocols/identify/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tentacle-identify"
version = "0.1.0"
version = "0.2.0"
authors = ["Qian Linfeng <[email protected]>"]
license = "MIT"
description = "p2p identify protocol"
Expand All @@ -10,7 +10,7 @@ categories = ["network-programming", "asynchronous"]
edition = "2018"

[dependencies]
p2p = { path = "../..", version = "0.2.0-alpha.1", package = "tentacle" }
p2p = { path = "../..", version = "0.2.0-alpha.2", package = "tentacle" }
bytes = "0.4"
flatbuffers = "0.5.0"
flatbuffers-verifier = "0.1.8"
Expand Down
4 changes: 2 additions & 2 deletions protocols/ping/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tentacle-ping"
version = "0.2.0"
version = "0.3.0"
authors = ["Nervos Core Dev <[email protected]>"]
license = "MIT"
keywords = ["network", "peer-to-peer", "p2p", "ping"]
Expand All @@ -10,7 +10,7 @@ description = "ping protocol implementation for tentacle"
edition = "2018"

[dependencies]
p2p = { path = "../..", version = "0.2.0-alpha.1", package = "tentacle" }
p2p = { path = "../..", version = "0.2.0-alpha.2", package = "tentacle" }
log = "0.4"
flatbuffers = "0.5.0"
flatbuffers-verifier = "0.1.8"
Expand Down
2 changes: 1 addition & 1 deletion secio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tentacle-secio"
version = "0.1.0"
version = "0.1.1"
license = "MIT"
description = "Secio encryption protocol for p2p"
authors = ["piaoliu <[email protected]>", "Nervos Core Dev <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion yamux/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tokio-yamux"
version = "0.1.4"
version = "0.1.5"
license = "MIT"
repository = "https://github.com/nervosnetwork/p2p"
description = "Rust implementation of Yamux"
Expand Down

0 comments on commit 27129e3

Please sign in to comment.