Skip to content

Commit

Permalink
Merge pull request #357 from nervosnetwork/bump-to-0.4.0
Browse files Browse the repository at this point in the history
chore: bump to 0.4.0
  • Loading branch information
driftluo authored Jun 23, 2022
2 parents a5b945f + 714b396 commit ca569bd
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 6 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 0.4.0

### Bug Fix
- Introduce budget model to avoid uninterrupted future(#355)
- Fixed in the implementation of poll fn, which does not call it if it returns none(#355)
- Reuse address by default(#356)
- Clippy fix(#358)

### Features
- Remove the external exposure of socket2, so that external interaction is only possible via fd(#355)

## 0.4.0-beta.5

### Features
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ The codes in the `protocols/` directory are no longer maintained and only used a

```toml
[dependencies]
tentacle = { version = "0.4.0-beta.1" }
tentacle = { version = "0.4.0" }
```

### Example
Expand Down Expand Up @@ -66,11 +66,11 @@ $ RUST_LOG=simple=info,tentacle=debug cargo run --example simple

You can see more detailed example in these three repos:

- [p2p-message](https://github.com/doitian/tentacle-p2p-message)
- [ckb](https://github.com/nervosnetwork/ckb)
- [cita](https://github.com/cryptape/cita)
- [muta](https://github.com/nervosnetwork/muta)
- [axon](https://github.com/nervosnetwork/axon)
- [godwoken](https://github.com/nervosnetwork/godwoken)

### Run on browser and test

Expand Down
2 changes: 1 addition & 1 deletion multiaddr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tentacle-multiaddr"
version = "0.3.2"
version = "0.3.3"
authors = ["driftluo <[email protected]>"]
edition = "2021"

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.5.4"
version = "0.5.5"
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 tentacle/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tentacle"
version = "0.4.0-beta.5"
version = "0.4.0"
license = "MIT"
description = "Minimal implementation for a multiplexed p2p network framework."
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.3.5"
version = "0.3.6"
license = "MIT"
repository = "https://github.com/nervosnetwork/tentacle"
description = "Rust implementation of Yamux"
Expand Down

0 comments on commit ca569bd

Please sign in to comment.