Skip to content

Commit

Permalink
prepare release 0.5.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
jjeffcaii committed Jun 11, 2020
1 parent bfc9c40 commit b748713
Show file tree
Hide file tree
Showing 12 changed files with 25 additions and 26 deletions.
1 change: 1 addition & 0 deletions README.md
@@ -1,5 +1,6 @@
# rsocket-rust

[![Build Status](https://travis-ci.com/rsocket/rsocket-rust.svg?branch=master)](https://travis-ci.com/rsocket/rsocket-rust)
[![Crates.io](https://img.shields.io/crates/v/rsocket_rust)](https://crates.io/crates/rsocket_rust)
[![Crates.io](https://img.shields.io/crates/d/rsocket_rust)](https://crates.io/crates/rsocket_rust)
[![License](https://img.shields.io/github/license/rsocket/rsocket-rust.svg)](https://github.com/rsocket/rsocket-rust/blob/master/LICENSE)
Expand Down
9 changes: 4 additions & 5 deletions examples/Cargo.toml
Expand Up @@ -14,17 +14,16 @@ tokio-postgres = "0.5.4"
redis = "0.16.0"

[dev-dependencies.rsocket_rust]
path = "../rsocket"
version = "0.5.3"

[dev-dependencies.rsocket_rust_transport_tcp]
path = "../rsocket-transport-tcp"
version = "0.5.3"

[dev-dependencies.rsocket_rust_transport_unix]
path = "../rsocket-transport-unix"
version = "0.5.3"

[dev-dependencies.rsocket_rust_transport_websocket]
version = "0.5.2"
path = "../rsocket-transport-websocket"
version = "0.5.3"

[dev-dependencies.tokio]
version = "0.2.21"
Expand Down
8 changes: 4 additions & 4 deletions rsocket-benchmark/Cargo.toml
Expand Up @@ -17,17 +17,17 @@ serde_derive = "1.0.111"
criterion = "0.3.2"

[dev-dependencies.rsocket_rust]
path = "../rsocket"
version = "0.5.3"
features = ["frame"]

[dev-dependencies.rsocket_rust_transport_tcp]
path = "../rsocket-transport-tcp"
version = "0.5.3"

[dev-dependencies.rsocket_rust_transport_websocket]
path = "../rsocket-transport-websocket"
version = "0.5.3"

[dev-dependencies.rsocket_rust_messaging]
path = "../rsocket-messaging"
version = "0.5.3"

[dev-dependencies.tokio]
version = "0.2.21"
Expand Down
8 changes: 4 additions & 4 deletions rsocket-messaging/Cargo.toml
Expand Up @@ -13,17 +13,17 @@ description = "Communicate with Spring RSocket Messaging."
futures = "0.3.5"
bytes = "0.5.4"
serde = "1.0.111"
serde_json = "1.0.53"
serde_json = "1.0.55"
serde_cbor = "0.11.1"
hex = "0.4.2"
url = "2.1.1"

[dependencies.rsocket_rust]
path = "../rsocket"
version = "0.5.3"
features = ["frame"]

[dependencies.rsocket_rust_transport_tcp]
path = "../rsocket-transport-tcp"
version = "0.5.3"

[dependencies.rsocket_rust_transport_websocket]
path = "../rsocket-transport-websocket"
version = "0.5.3"
8 changes: 4 additions & 4 deletions rsocket-test/Cargo.toml
Expand Up @@ -20,16 +20,16 @@ path = "../rsocket"
features = ["frame"]

[dev-dependencies.rsocket_rust_transport_tcp]
path = "../rsocket-transport-tcp"
version = "0.5.3"

[dev-dependencies.rsocket_rust_transport_unix]
path = "../rsocket-transport-unix"
version = "0.5.3"

[dev-dependencies.rsocket_rust_transport_websocket]
path = "../rsocket-transport-websocket"
version = "0.5.3"

[dev-dependencies.rsocket_rust_messaging]
path = "../rsocket-messaging"
version = "0.5.3"

[dev-dependencies.tokio]
version = "0.2.21"
Expand Down
2 changes: 1 addition & 1 deletion rsocket-transport-tcp/Cargo.toml
Expand Up @@ -15,7 +15,7 @@ futures = "0.3.5"
bytes = "0.5.4"

[dependencies.rsocket_rust]
path = "../rsocket"
version = "0.5.3"
features = ["frame"]

[dependencies.tokio]
Expand Down
4 changes: 2 additions & 2 deletions rsocket-transport-tcp/README.md
Expand Up @@ -7,8 +7,8 @@ Add dependencies in your `Cargo.toml`.
```toml
[dependencies]
tokio = "0.2.21"
rsocket_rust = "0.5.2"
rsocket_rust_transport_tcp = "0.5.2"
rsocket_rust = "0.5.3"
rsocket_rust_transport_tcp = "0.5.3"
```

### Server
Expand Down
2 changes: 1 addition & 1 deletion rsocket-transport-unix/Cargo.toml
Expand Up @@ -15,7 +15,7 @@ futures = "0.3.5"
bytes = "0.5.4"

[dependencies.rsocket_rust]
path = "../rsocket"
version = "0.5.3"
features = ["frame"]

[dependencies.tokio]
Expand Down
2 changes: 1 addition & 1 deletion rsocket-transport-wasm/Cargo.toml
Expand Up @@ -19,7 +19,7 @@ serde = "1.0.111"
serde_derive = "1.0.111"

[dependencies.rsocket_rust]
path = "../rsocket"
version = "0.5.3"
features = ["frame"]

[dependencies.wasm-bindgen]
Expand Down
2 changes: 1 addition & 1 deletion rsocket-transport-websocket/Cargo.toml
Expand Up @@ -17,7 +17,7 @@ url = "2.1.1"
tokio-tungstenite = "0.10.1"

[dependencies.rsocket_rust]
path = "../rsocket"
version = "0.5.3"
features = ["frame"]

[dependencies.tokio]
Expand Down
4 changes: 2 additions & 2 deletions rsocket-transport-websocket/README.md
Expand Up @@ -7,8 +7,8 @@ Add dependencies in your `Cargo.toml`.
```toml
[dependencies]
tokio = "0.2.21"
rsocket_rust = "0.5.2"
rsocket_rust_transport_websocket = "0.5.2"
rsocket_rust = "0.5.3"
rsocket_rust_transport_websocket = "0.5.3"
```

### Server
Expand Down
1 change: 0 additions & 1 deletion rsocket/Cargo.toml
Expand Up @@ -14,7 +14,6 @@ log = "0.4.8"
bytes = "0.5.4"
futures = "0.3.5"
lazy_static = "1.4.0"
async-trait = "0.1.33"

[dependencies.tokio]
version = "0.2.21"
Expand Down

0 comments on commit b748713

Please sign in to comment.