Skip to content

Commit

Permalink
chore: bump version to 0.3.1 (#489)
Browse files Browse the repository at this point in the history
 feat: add support for curve secp256r1 (NistP256) (#486) 
 feat!: general client for FFI and WASM (#478) 
 refactor!: separated transport crate (#471) 
 refactor:add SwarmCallback to allow user make delayed callback binding (#485)
 refactor: split pool from transport and add BoxedTransport (#479) 
 refactor: split Transaction from MessagePayload (#483) 
 chore: remove web3 dependency and fix Did display prefix (#480)
  • Loading branch information
RyanKung authored Nov 8, 2023
1 parent 02d2a84 commit fa382c7
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 9 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ resolver = "2"

[workspace.dependencies]
js-sys = { version = "0.3.64" }
rings-core = { version = "0.3.0", path = "core", default-features = false }
rings-derive = { version = "0.3.0", path = "derive", default-features = false }
rings-rpc = { version = "0.3.0", path = "rpc", default-features = false }
rings-transport = { version = "0.3.0", path = "transport" }
rings-core = { version = "0.3.1", path = "core", default-features = false }
rings-derive = { version = "0.3.1", path = "derive", default-features = false }
rings-rpc = { version = "0.3.1", path = "rpc", default-features = false }
rings-transport = { version = "0.3.1", path = "transport" }
serde-wasm-bindgen = { version = "0.5.0" }
wasm-bindgen = { version = "0.2.87" }
wasm-bindgen-futures = { version = "0.4.37" }
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,14 @@ Rings Node (The node service of Rings Network)
[![npm version](https://badge.fury.io/js/@ringsnetwork%2Frings-node.svg)](https://badge.fury.io/js/@ringsnetwork%2Frings-node)
![GitHub](https://img.shields.io/github/license/RingsNetwork/rings-node)


Rings is a structured peer-to-peer network implementation using WebRTC, Chord algorithm, and full WebAssembly (WASM) support.

For more details you can check our [Rings Whitepaper](https://raw.githubusercontent.com/RingsNetwork/whitepaper/master/rings.pdf).

You can also visit [Rings Network's homepage](https://ringsnetwork.io) to get more project info.

And you can get more document [here](https://rings.gitbook.io/).

## Installation

Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rings-core"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
authors = ["RND <[email protected]>"]
description = "Chord DHT implementation with ICE"
Expand Down
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rings-derive"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
authors = ["RND <[email protected]>"]
repository = "https://github.com/RingsNetwork/rings-node"
Expand Down
2 changes: 1 addition & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rings-node"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
default-run = "rings"
authors = ["RND <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rings-rpc"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
authors = ["RND <[email protected]>"]
description = """
Expand Down
2 changes: 1 addition & 1 deletion transport/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rings-transport"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
authors = ["RND <[email protected]>"]
description = "Transport layer implementation for Rings Core"
Expand Down

0 comments on commit fa382c7

Please sign in to comment.