Skip to content

Bump version #446

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jul 8, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions core-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"]
license = "MIT"
name = "jsonrpc-core-client"
repository = "https://github.com/paritytech/jsonrpc"
version = "12.0.0"
version = "12.1.0"

categories = [
"asynchronous",
Expand All @@ -24,7 +24,7 @@ http = ["jsonrpc-client-transports/http"]
ws = ["jsonrpc-client-transports/ws"]

[dependencies]
jsonrpc-client-transports = { version = "12.0", path = "./transports", default-features = false }
jsonrpc-client-transports = { version = "12.1", path = "./transports", default-features = false }

[badges]
travis-ci = { repository = "paritytech/jsonrpc", branch = "master"}
8 changes: 4 additions & 4 deletions core-client/transports/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"]
license = "MIT"
name = "jsonrpc-client-transports"
repository = "https://github.com/paritytech/jsonrpc"
version = "12.0.0"
version = "12.1.0"

categories = [
"asynchronous",
Expand All @@ -32,8 +32,8 @@ failure = "0.1"
futures = "0.1.26"
hyper = { version = "0.12", optional = true }
hyper-tls = { version = "0.3.2", optional = true }
jsonrpc-core = { version = "12.0", path = "../../core" }
jsonrpc-pubsub = { version = "12.0", path = "../../pubsub" }
jsonrpc-core = { version = "12.1", path = "../../core" }
jsonrpc-pubsub = { version = "12.1", path = "../../pubsub" }
log = "0.4"
serde = "1.0"
serde_json = "1.0"
Expand All @@ -42,7 +42,7 @@ websocket = { version = "0.22", optional = true }

[dev-dependencies]
assert_matches = "1.1"
jsonrpc-http-server = { version = "12.0", path = "../../http" }
jsonrpc-http-server = { version = "12.1", path = "../../http" }
lazy_static = "1.0"
env_logger = "0.6"
tokio = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"]
license = "MIT"
name = "jsonrpc-core"
repository = "https://github.com/paritytech/jsonrpc"
version = "12.0.0"
version = "12.1.0"

categories = [
"asynchronous",
Expand Down
10 changes: 5 additions & 5 deletions derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ homepage = "https://github.com/paritytech/jsonrpc"
license = "MIT"
name = "jsonrpc-derive"
repository = "https://github.com/paritytech/jsonrpc"
version = "12.0.0"
version = "12.1.0"

[lib]
proc-macro = true
Expand All @@ -19,10 +19,10 @@ quote = "0.6"
proc-macro-crate = "0.1.3"

[dev-dependencies]
jsonrpc-core = { version = "12.0", path = "../core" }
jsonrpc-core-client = { version = "12.0", path = "../core-client" }
jsonrpc-pubsub = { version = "12.0", path = "../pubsub" }
jsonrpc-tcp-server = { version = "12.0", path = "../tcp" }
jsonrpc-core = { version = "12.1", path = "../core" }
jsonrpc-core-client = { version = "12.1", path = "../core-client" }
jsonrpc-pubsub = { version = "12.1", path = "../pubsub" }
jsonrpc-tcp-server = { version = "12.1", path = "../tcp" }
futures = "~0.1.6"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down
6 changes: 3 additions & 3 deletions http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ keywords = ["jsonrpc", "json-rpc", "json", "rpc", "server"]
license = "MIT"
name = "jsonrpc-http-server"
repository = "https://github.com/paritytech/jsonrpc"
version = "12.0.0"
version = "12.1.0"

[dependencies]
hyper = "0.12"
jsonrpc-core = { version = "12.0", path = "../core" }
jsonrpc-server-utils = { version = "12.0", path = "../server-utils" }
jsonrpc-core = { version = "12.1", path = "../core" }
jsonrpc-server-utils = { version = "12.1", path = "../server-utils" }
log = "0.4"
net2 = "0.2"
unicase = "2.0"
Expand Down
2 changes: 1 addition & 1 deletion http/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Rust http server using JSON-RPC 2.0.

```
[dependencies]
jsonrpc-http-server = "12.0"
jsonrpc-http-server = "12.1"
```

`main.rs`
Expand Down
6 changes: 3 additions & 3 deletions ipc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ homepage = "https://github.com/paritytech/jsonrpc"
license = "MIT"
name = "jsonrpc-ipc-server"
repository = "https://github.com/paritytech/jsonrpc"
version = "12.0.0"
version = "12.1.0"

[dependencies]
log = "0.4"
tokio-service = "0.1"
jsonrpc-core = { version = "12.0", path = "../core" }
jsonrpc-server-utils = { version = "12.0", path = "../server-utils" }
jsonrpc-core = { version = "12.1", path = "../core" }
jsonrpc-server-utils = { version = "12.1", path = "../server-utils" }
parity-tokio-ipc = "0.1"
parking_lot = "0.8"

Expand Down
2 changes: 1 addition & 1 deletion ipc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ IPC server (Windows & Linux) for JSON-RPC 2.0.

```
[dependencies]
jsonrpc-ipc-server = "12.0"
jsonrpc-ipc-server = "12.1"
```

`main.rs`
Expand Down
6 changes: 3 additions & 3 deletions pubsub/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ keywords = ["jsonrpc", "json-rpc", "json", "rpc", "macros"]
license = "MIT"
name = "jsonrpc-pubsub"
repository = "https://github.com/paritytech/jsonrpc"
version = "12.0.0"
version = "12.1.0"

[dependencies]
log = "0.4"
parking_lot = "0.8"
jsonrpc-core = { version = "12.0", path = "../core" }
jsonrpc-core = { version = "12.1", path = "../core" }
serde = "1.0"

[dev-dependencies]
jsonrpc-tcp-server = { version = "12.0", path = "../tcp" }
jsonrpc-tcp-server = { version = "12.1", path = "../tcp" }

[badges]
travis-ci = { repository = "paritytech/jsonrpc", branch = "master"}
10 changes: 5 additions & 5 deletions pubsub/more-examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ name = "jsonrpc-pubsub-examples"
description = "Examples of Publish-Subscribe extension for jsonrpc."
homepage = "https://github.com/paritytech/jsonrpc"
repository = "https://github.com/paritytech/jsonrpc"
version = "12.0.0"
version = "12.1.0"
authors = ["tomusdrw <[email protected]>"]
license = "MIT"

[dependencies]
jsonrpc-core = { version = "12.0", path = "../../core" }
jsonrpc-pubsub = { version = "12.0", path = "../" }
jsonrpc-ws-server = { version = "12.0", path = "../../ws" }
jsonrpc-ipc-server = { version = "12.0", path = "../../ipc" }
jsonrpc-core = { version = "12.1", path = "../../core" }
jsonrpc-pubsub = { version = "12.1", path = "../" }
jsonrpc-ws-server = { version = "12.1", path = "../../ws" }
jsonrpc-ipc-server = { version = "12.1", path = "../../ipc" }
4 changes: 2 additions & 2 deletions server-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"]
license = "MIT"
name = "jsonrpc-server-utils"
repository = "https://github.com/paritytech/jsonrpc"
version = "12.0.0"
version = "12.1.0"

[dependencies]
bytes = "0.4"
globset = "0.4"
jsonrpc-core = { version = "12.0", path = "../core" }
jsonrpc-core = { version = "12.1", path = "../core" }
lazy_static = "1.1.0"
log = "0.4"
num_cpus = "1.8"
Expand Down
4 changes: 2 additions & 2 deletions stdio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ homepage = "https://github.com/paritytech/jsonrpc"
license = "MIT"
name = "jsonrpc-stdio-server"
repository = "https://github.com/paritytech/jsonrpc"
version = "12.0.0"
version = "12.1.0"

[dependencies]
futures = "0.1.23"
jsonrpc-core = { version = "12.0", path = "../core" }
jsonrpc-core = { version = "12.1", path = "../core" }
log = "0.4"
tokio = "0.1.7"
tokio-codec = "0.1.0"
Expand Down
2 changes: 1 addition & 1 deletion stdio/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Takes one request per line and outputs each response on a new line.

```
[dependencies]
jsonrpc-stdio-server = "12.0"
jsonrpc-stdio-server = "12.1"
```

`main.rs`
Expand Down
6 changes: 3 additions & 3 deletions tcp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ homepage = "https://github.com/paritytech/jsonrpc"
license = "MIT"
name = "jsonrpc-tcp-server"
repository = "https://github.com/paritytech/jsonrpc"
version = "12.0.0"
version = "12.1.0"

[dependencies]
log = "0.4"
parking_lot = "0.8"
tokio-service = "0.1"
jsonrpc-core = { version = "12.0", path = "../core" }
jsonrpc-server-utils = { version = "12.0", path = "../server-utils" }
jsonrpc-core = { version = "12.1", path = "../core" }
jsonrpc-server-utils = { version = "12.1", path = "../server-utils" }

[dev-dependencies]
lazy_static = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion tcp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ TCP server for JSON-RPC 2.0.

```
[dependencies]
jsonrpc-tcp-server = "12.0"
jsonrpc-tcp-server = "12.1"
```

`main.rs`
Expand Down
10 changes: 5 additions & 5 deletions test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "jsonrpc-test"
description = "Simple test framework for JSON-RPC."
version = "12.0.0"
version = "12.1.0"
authors = ["Tomasz Drwięga <[email protected]>"]
license = "MIT"
homepage = "https://github.com/paritytech/jsonrpc"
Expand All @@ -10,13 +10,13 @@ documentation = "https://docs.rs/jsonrpc-test/"
edition = "2018"

[dependencies]
jsonrpc-core = { path = "../core", version = "12.0" }
jsonrpc-core-client = { path = "../core-client", version = "12.0" }
jsonrpc-pubsub = { path = "../pubsub", version = "12.0" }
jsonrpc-core = { version = "12.1", path = "../core" }
jsonrpc-core-client = { version = "12.1", path = "../core-client" }
jsonrpc-pubsub = { version = "12.1", path = "../pubsub" }
log = "0.4"
serde = "1.0"
serde_json = "1.0"

[dev-dependencies]
jsonrpc-derive = { path = "../derive", version = "12.0" }
jsonrpc-derive = { version = "12.1", path = "../derive" }

6 changes: 3 additions & 3 deletions ws/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ homepage = "https://github.com/paritytech/jsonrpc"
license = "MIT"
name = "jsonrpc-ws-server"
repository = "https://github.com/paritytech/jsonrpc"
version = "12.0.0"
version = "12.1.0"

[dependencies]
jsonrpc-core = { version = "12.0", path = "../core" }
jsonrpc-server-utils = { version = "12.0", path = "../server-utils" }
jsonrpc-core = { version = "12.1", path = "../core" }
jsonrpc-server-utils = { version = "12.1", path = "../server-utils" }
log = "0.4"
parking_lot = "0.8"
slab = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion ws/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ WebSockets server for JSON-RPC 2.0.

```
[dependencies]
jsonrpc-ws-server = "12.0"
jsonrpc-ws-server = "12.1"
```

`main.rs`
Expand Down