Skip to content

Commit 584327b

Browse files
authored
Bump version (#446)
* Replace depedency version when field not in first position * Bump version -> lucky 13.0 * Revert "Replace depedency version when field not in first position" This reverts commit 7c3cb40 * Put version field first to make bump_version script work * Revert "Bump version -> lucky 13.0" This reverts commit fde4053 * Bump version -> 12.1
1 parent 44c501b commit 584327b

File tree

18 files changed

+46
-46
lines changed

18 files changed

+46
-46
lines changed

core-client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"]
88
license = "MIT"
99
name = "jsonrpc-core-client"
1010
repository = "https://github.com/paritytech/jsonrpc"
11-
version = "12.0.0"
11+
version = "12.1.0"
1212

1313
categories = [
1414
"asynchronous",
@@ -24,7 +24,7 @@ http = ["jsonrpc-client-transports/http"]
2424
ws = ["jsonrpc-client-transports/ws"]
2525

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

2929
[badges]
3030
travis-ci = { repository = "paritytech/jsonrpc", branch = "master"}

core-client/transports/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"]
88
license = "MIT"
99
name = "jsonrpc-client-transports"
1010
repository = "https://github.com/paritytech/jsonrpc"
11-
version = "12.0.0"
11+
version = "12.1.0"
1212

1313
categories = [
1414
"asynchronous",
@@ -32,8 +32,8 @@ failure = "0.1"
3232
futures = "0.1.26"
3333
hyper = { version = "0.12", optional = true }
3434
hyper-tls = { version = "0.3.2", optional = true }
35-
jsonrpc-core = { version = "12.0", path = "../../core" }
36-
jsonrpc-pubsub = { version = "12.0", path = "../../pubsub" }
35+
jsonrpc-core = { version = "12.1", path = "../../core" }
36+
jsonrpc-pubsub = { version = "12.1", path = "../../pubsub" }
3737
log = "0.4"
3838
serde = "1.0"
3939
serde_json = "1.0"
@@ -42,7 +42,7 @@ websocket = { version = "0.22", optional = true }
4242

4343
[dev-dependencies]
4444
assert_matches = "1.1"
45-
jsonrpc-http-server = { version = "12.0", path = "../../http" }
45+
jsonrpc-http-server = { version = "12.1", path = "../../http" }
4646
lazy_static = "1.0"
4747
env_logger = "0.6"
4848
tokio = "0.1"

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"]
88
license = "MIT"
99
name = "jsonrpc-core"
1010
repository = "https://github.com/paritytech/jsonrpc"
11-
version = "12.0.0"
11+
version = "12.1.0"
1212

1313
categories = [
1414
"asynchronous",

derive/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ homepage = "https://github.com/paritytech/jsonrpc"
77
license = "MIT"
88
name = "jsonrpc-derive"
99
repository = "https://github.com/paritytech/jsonrpc"
10-
version = "12.0.0"
10+
version = "12.1.0"
1111

1212
[lib]
1313
proc-macro = true
@@ -19,10 +19,10 @@ quote = "0.6"
1919
proc-macro-crate = "0.1.3"
2020

2121
[dev-dependencies]
22-
jsonrpc-core = { version = "12.0", path = "../core" }
23-
jsonrpc-core-client = { version = "12.0", path = "../core-client" }
24-
jsonrpc-pubsub = { version = "12.0", path = "../pubsub" }
25-
jsonrpc-tcp-server = { version = "12.0", path = "../tcp" }
22+
jsonrpc-core = { version = "12.1", path = "../core" }
23+
jsonrpc-core-client = { version = "12.1", path = "../core-client" }
24+
jsonrpc-pubsub = { version = "12.1", path = "../pubsub" }
25+
jsonrpc-tcp-server = { version = "12.1", path = "../tcp" }
2626
futures = "~0.1.6"
2727
serde = { version = "1.0", features = ["derive"] }
2828
serde_json = "1.0"

http/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ keywords = ["jsonrpc", "json-rpc", "json", "rpc", "server"]
88
license = "MIT"
99
name = "jsonrpc-http-server"
1010
repository = "https://github.com/paritytech/jsonrpc"
11-
version = "12.0.0"
11+
version = "12.1.0"
1212

1313
[dependencies]
1414
hyper = "0.12"
15-
jsonrpc-core = { version = "12.0", path = "../core" }
16-
jsonrpc-server-utils = { version = "12.0", path = "../server-utils" }
15+
jsonrpc-core = { version = "12.1", path = "../core" }
16+
jsonrpc-server-utils = { version = "12.1", path = "../server-utils" }
1717
log = "0.4"
1818
net2 = "0.2"
1919
unicase = "2.0"

http/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Rust http server using JSON-RPC 2.0.
99

1010
```
1111
[dependencies]
12-
jsonrpc-http-server = "12.0"
12+
jsonrpc-http-server = "12.1"
1313
```
1414

1515
`main.rs`

ipc/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ homepage = "https://github.com/paritytech/jsonrpc"
77
license = "MIT"
88
name = "jsonrpc-ipc-server"
99
repository = "https://github.com/paritytech/jsonrpc"
10-
version = "12.0.0"
10+
version = "12.1.0"
1111

1212
[dependencies]
1313
log = "0.4"
1414
tokio-service = "0.1"
15-
jsonrpc-core = { version = "12.0", path = "../core" }
16-
jsonrpc-server-utils = { version = "12.0", path = "../server-utils" }
15+
jsonrpc-core = { version = "12.1", path = "../core" }
16+
jsonrpc-server-utils = { version = "12.1", path = "../server-utils" }
1717
parity-tokio-ipc = "0.1"
1818
parking_lot = "0.8"
1919

ipc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ IPC server (Windows & Linux) for JSON-RPC 2.0.
99

1010
```
1111
[dependencies]
12-
jsonrpc-ipc-server = "12.0"
12+
jsonrpc-ipc-server = "12.1"
1313
```
1414

1515
`main.rs`

pubsub/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ keywords = ["jsonrpc", "json-rpc", "json", "rpc", "macros"]
88
license = "MIT"
99
name = "jsonrpc-pubsub"
1010
repository = "https://github.com/paritytech/jsonrpc"
11-
version = "12.0.0"
11+
version = "12.1.0"
1212

1313
[dependencies]
1414
log = "0.4"
1515
parking_lot = "0.8"
16-
jsonrpc-core = { version = "12.0", path = "../core" }
16+
jsonrpc-core = { version = "12.1", path = "../core" }
1717
serde = "1.0"
1818

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

2222
[badges]
2323
travis-ci = { repository = "paritytech/jsonrpc", branch = "master"}

pubsub/more-examples/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ name = "jsonrpc-pubsub-examples"
33
description = "Examples of Publish-Subscribe extension for jsonrpc."
44
homepage = "https://github.com/paritytech/jsonrpc"
55
repository = "https://github.com/paritytech/jsonrpc"
6-
version = "12.0.0"
6+
version = "12.1.0"
77
authors = ["tomusdrw <[email protected]>"]
88
license = "MIT"
99

1010
[dependencies]
11-
jsonrpc-core = { version = "12.0", path = "../../core" }
12-
jsonrpc-pubsub = { version = "12.0", path = "../" }
13-
jsonrpc-ws-server = { version = "12.0", path = "../../ws" }
14-
jsonrpc-ipc-server = { version = "12.0", path = "../../ipc" }
11+
jsonrpc-core = { version = "12.1", path = "../../core" }
12+
jsonrpc-pubsub = { version = "12.1", path = "../" }
13+
jsonrpc-ws-server = { version = "12.1", path = "../../ws" }
14+
jsonrpc-ipc-server = { version = "12.1", path = "../../ipc" }

server-utils/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"]
88
license = "MIT"
99
name = "jsonrpc-server-utils"
1010
repository = "https://github.com/paritytech/jsonrpc"
11-
version = "12.0.0"
11+
version = "12.1.0"
1212

1313
[dependencies]
1414
bytes = "0.4"
1515
globset = "0.4"
16-
jsonrpc-core = { version = "12.0", path = "../core" }
16+
jsonrpc-core = { version = "12.1", path = "../core" }
1717
lazy_static = "1.1.0"
1818
log = "0.4"
1919
num_cpus = "1.8"

stdio/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ homepage = "https://github.com/paritytech/jsonrpc"
77
license = "MIT"
88
name = "jsonrpc-stdio-server"
99
repository = "https://github.com/paritytech/jsonrpc"
10-
version = "12.0.0"
10+
version = "12.1.0"
1111

1212
[dependencies]
1313
futures = "0.1.23"
14-
jsonrpc-core = { version = "12.0", path = "../core" }
14+
jsonrpc-core = { version = "12.1", path = "../core" }
1515
log = "0.4"
1616
tokio = "0.1.7"
1717
tokio-codec = "0.1.0"

stdio/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Takes one request per line and outputs each response on a new line.
1010

1111
```
1212
[dependencies]
13-
jsonrpc-stdio-server = "12.0"
13+
jsonrpc-stdio-server = "12.1"
1414
```
1515

1616
`main.rs`

tcp/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ homepage = "https://github.com/paritytech/jsonrpc"
77
license = "MIT"
88
name = "jsonrpc-tcp-server"
99
repository = "https://github.com/paritytech/jsonrpc"
10-
version = "12.0.0"
10+
version = "12.1.0"
1111

1212
[dependencies]
1313
log = "0.4"
1414
parking_lot = "0.8"
1515
tokio-service = "0.1"
16-
jsonrpc-core = { version = "12.0", path = "../core" }
17-
jsonrpc-server-utils = { version = "12.0", path = "../server-utils" }
16+
jsonrpc-core = { version = "12.1", path = "../core" }
17+
jsonrpc-server-utils = { version = "12.1", path = "../server-utils" }
1818

1919
[dev-dependencies]
2020
lazy_static = "1.0"

tcp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ TCP server for JSON-RPC 2.0.
99

1010
```
1111
[dependencies]
12-
jsonrpc-tcp-server = "12.0"
12+
jsonrpc-tcp-server = "12.1"
1313
```
1414

1515
`main.rs`

test/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "jsonrpc-test"
33
description = "Simple test framework for JSON-RPC."
4-
version = "12.0.0"
4+
version = "12.1.0"
55
authors = ["Tomasz Drwięga <[email protected]>"]
66
license = "MIT"
77
homepage = "https://github.com/paritytech/jsonrpc"
@@ -10,13 +10,13 @@ documentation = "https://docs.rs/jsonrpc-test/"
1010
edition = "2018"
1111

1212
[dependencies]
13-
jsonrpc-core = { path = "../core", version = "12.0" }
14-
jsonrpc-core-client = { path = "../core-client", version = "12.0" }
15-
jsonrpc-pubsub = { path = "../pubsub", version = "12.0" }
13+
jsonrpc-core = { version = "12.1", path = "../core" }
14+
jsonrpc-core-client = { version = "12.1", path = "../core-client" }
15+
jsonrpc-pubsub = { version = "12.1", path = "../pubsub" }
1616
log = "0.4"
1717
serde = "1.0"
1818
serde_json = "1.0"
1919

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

ws/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ homepage = "https://github.com/paritytech/jsonrpc"
77
license = "MIT"
88
name = "jsonrpc-ws-server"
99
repository = "https://github.com/paritytech/jsonrpc"
10-
version = "12.0.0"
10+
version = "12.1.0"
1111

1212
[dependencies]
13-
jsonrpc-core = { version = "12.0", path = "../core" }
14-
jsonrpc-server-utils = { version = "12.0", path = "../server-utils" }
13+
jsonrpc-core = { version = "12.1", path = "../core" }
14+
jsonrpc-server-utils = { version = "12.1", path = "../server-utils" }
1515
log = "0.4"
1616
parking_lot = "0.8"
1717
slab = "0.4"

ws/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ WebSockets server for JSON-RPC 2.0.
99

1010
```
1111
[dependencies]
12-
jsonrpc-ws-server = "12.0"
12+
jsonrpc-ws-server = "12.1"
1313
```
1414

1515
`main.rs`

0 commit comments

Comments
 (0)