Skip to content

Commit

Permalink
chore: bump to 0.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
driftluo committed Dec 2, 2024
1 parent 17d7fee commit 07a0b87
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 5 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Release

on:
release:
types: [created]

permissions:
contents: write

jobs:
release:
runs-on: ubuntu-latest
include:
- rust: stable
steps:
- uses: actions/checkout@v4
- run: sudo apt-get update && sudo apt-get install libssl-dev pkg-config libclang-dev -y
- name: Publish
run: |
cargo login ${{ secrets.CARGO_REGISTRY_TOKEN }}
cd multiaddr && cargo publish --dry-run
cd secio && cargo publish --dry-run
cd yamux && cargo publish --dry-run
cd tentacle && cargo publish --dry-run
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
## tentacle 0.6.5 yamux 0.3.10 secio 0.6.4

### Features

- enable tcp base protocol listen on same port

## tentacle 0.6.4

## Feature
### Features
- Make `runtime::Interval` behavior same as tokio interval(#379)

## tentacle 0.6.3

## Bug Fix
### Bug Fix
- Fix session open protocol open order(#377)
- Fix interval inconsistent behavior(#378)

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.3"
version = "0.6.4"
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.4"
version = "0.6.5"
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.9"
version = "0.3.10"
license = "MIT"
repository = "https://github.com/nervosnetwork/tentacle"
description = "Rust implementation of Yamux"
Expand Down

0 comments on commit 07a0b87

Please sign in to comment.