Skip to content

Commit

Permalink
Merge pull request #376 from nervosnetwork/bump-to-0.6.2
Browse files Browse the repository at this point in the history
chore: bump to 0.6.2
  • Loading branch information
driftluo authored Oct 24, 2024
2 parents 96fe296 + ebff863 commit 2aa6dd4
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 11 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## tentacle 0.6.2 secio 0.6.3 yamux 0.3.9

### Features
- Fix wasm example(#373)
- optimizing wasm experience(#375)

## tentacle 0.6.1

### Features
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Tentacle

[![Build Status](https://github.com/nervosnetwork/tentacle/actions/workflows/ci.yaml/badge.svg?branch=master)](https://github.com/nervosnetwork/tentacle/actions/workflows/ci.yaml/badge.svg?branch=master)
![image](https://img.shields.io/badge/rustc-1.68.2-blue.svg)
![image](https://img.shields.io/badge/rustc-1.81.0-blue.svg)

## Overview

Expand Down 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" }
tentacle = { version = "0.6.0" }
```

### Example
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.6.2"
version = "0.6.3"
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.6.1"
version = "0.6.2"
license = "MIT"
description = "Minimal implementation for a multiplexed p2p network framework."
authors = ["piaoliu <[email protected]>", "Nervos Core Dev <[email protected]>"]
Expand Down
12 changes: 6 additions & 6 deletions tentacle/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Tentacle

[![Build Status](https://travis-ci.com/nervosnetwork/tentacle.svg?branch=master)](https://travis-ci.com/nervosnetwork/tentacle)
![image](https://img.shields.io/badge/rustc-1.68.2-blue.svg)
[![Build Status](https://github.com/nervosnetwork/tentacle/actions/workflows/ci.yaml/badge.svg?branch=master)](https://github.com/nervosnetwork/tentacle/actions/workflows/ci.yaml/badge.svg?branch=master)
![image](https://img.shields.io/badge/rustc-1.81.0-blue.svg)

## Overview

Expand Down 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" }
tentacle = { version = "0.6.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 All @@ -81,8 +81,8 @@ $ cd tentacle && RUST_LOG=info cargo run --example simple --features ws -- serve

2. setup a browser client
```
$ cd simple_wasm/www && wasm-pack build
$ npm install && npm run start
$ cd simple_wasm && wasm-pack build
$ npm install && npm run serve
```

all wasm code generate from [book](https://rustwasm.github.io/docs/book/game-of-life/hello-world.html)
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.8"
version = "0.3.9"
license = "MIT"
repository = "https://github.com/nervosnetwork/tentacle"
description = "Rust implementation of Yamux"
Expand Down

0 comments on commit 2aa6dd4

Please sign in to comment.