-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #110 from nervosnetwork/release-0.2-alpha.2
chore: release 0.2-alpha.2
- Loading branch information
Showing
6 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]>"] | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]>"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters