Skip to content

Commit a51a526

Browse files
authored
version 7.1.0 (#189)
1 parent 8f1d9d5 commit a51a526

File tree

10 files changed

+30
-30
lines changed

10 files changed

+30
-30
lines changed

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ homepage = "https://github.com/paritytech/jsonrpc"
44
repository = "https://github.com/paritytech/jsonrpc"
55
license = "MIT"
66
name = "jsonrpc-core"
7-
version = "7.0.1"
7+
version = "7.1.0"
88
authors = ["debris <marek.kotewicz@gmail.com>"]
99
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"]
1010
documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_core/index.html"

http/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ homepage = "https://github.com/paritytech/jsonrpc"
44
repository = "https://github.com/paritytech/jsonrpc"
55
license = "MIT"
66
name = "jsonrpc-http-server"
7-
version = "7.0.1"
7+
version = "7.1.0"
88
authors = ["debris <marek.kotewicz@gmail.com>"]
99
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "server"]
1010
documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_http_server/index.html"
1111

1212
[dependencies]
1313
log = "0.3"
1414
net2 = "0.2"
15-
jsonrpc-core = { version = "7.0", path = "../core" }
16-
jsonrpc-server-utils = { version = "7.0", path = "../server-utils" }
15+
jsonrpc-core = { version = "7.1", path = "../core" }
16+
jsonrpc-server-utils = { version = "7.1", path = "../server-utils" }
1717
hyper = "0.11"
1818
unicase = "2.0"
1919

ipc/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "jsonrpc-ipc-server"
33
description = "IPC server for JSON-RPC"
4-
version = "7.0.1"
4+
version = "7.1.0"
55
authors = ["Nikolay Volf <nikvolf@gmail.com>"]
66
license = "MIT"
77
homepage = "https://github.com/paritytech/jsonrpc"
@@ -11,8 +11,8 @@ documentation = "https://paritytech.github.io/jsonrpc/json_ipc_server/index.html
1111
[dependencies]
1212
log = "0.3"
1313
tokio-service = "0.1"
14-
jsonrpc-core = { version = "7.0", path = "../core" }
15-
jsonrpc-server-utils = { version = "7.0", path = "../server-utils" }
14+
jsonrpc-core = { version = "7.1", path = "../core" }
15+
jsonrpc-server-utils = { version = "7.1", path = "../server-utils" }
1616
parity-tokio-ipc = { git = "https://github.com/nikvolf/parity-tokio-ipc" }
1717
bytes = "0.4"
1818

macros/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@ homepage = "https://github.com/paritytech/jsonrpc"
44
repository = "https://github.com/paritytech/jsonrpc"
55
license = "MIT"
66
name = "jsonrpc-macros"
7-
version = "7.0.1"
7+
version = "7.1.0"
88
authors = ["rphmeier <robert@parity.io>"]
99
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "macros"]
1010
documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_macros/index.html"
1111

1212
[dependencies]
1313
serde = "1.0"
14-
jsonrpc-core = { version = "7.0", path = "../core" }
15-
jsonrpc-pubsub = { version = "7.0", path = "../pubsub" }
14+
jsonrpc-core = { version = "7.1", path = "../core" }
15+
jsonrpc-pubsub = { version = "7.1", path = "../pubsub" }
1616

1717
[dev-dependencies]
1818
serde_json = "1.0"
19-
jsonrpc-tcp-server = { version = "7.0", path = "../tcp" }
19+
jsonrpc-tcp-server = { version = "7.1", path = "../tcp" }
2020

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

minihttp/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ homepage = "https://github.com/paritytech/jsonrpc"
44
repository = "https://github.com/paritytech/jsonrpc"
55
license = "MIT"
66
name = "jsonrpc-minihttp-server"
7-
version = "7.0.1"
7+
version = "7.1.0"
88
authors = ["tomusdrw <tomasz@parity.io>"]
99
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "server"]
1010
documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_minihttp_server/index.html"
@@ -14,8 +14,8 @@ bytes = "0.4"
1414
log = "0.3"
1515
parking_lot = "0.4"
1616
tokio-service = "0.1"
17-
jsonrpc-core = { version = "7.0", path = "../core" }
18-
jsonrpc-server-utils = { version = "7.0", path = "../server-utils" }
17+
jsonrpc-core = { version = "7.1", path = "../core" }
18+
jsonrpc-server-utils = { version = "7.1", path = "../server-utils" }
1919
tokio-proto = { git = "https://github.com/tomusdrw/tokio-proto" }
2020
tokio-minihttp = { git = "https://github.com/tomusdrw/tokio-minihttp" }
2121

pubsub/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@ homepage = "https://github.com/paritytech/jsonrpc"
44
repository = "https://github.com/paritytech/jsonrpc"
55
license = "MIT"
66
name = "jsonrpc-pubsub"
7-
version = "7.0.1"
7+
version = "7.1.0"
88
authors = ["tomusdrw <tomasz@parity.io>"]
99
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "macros"]
1010
documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_pubsub/index.html"
1111

1212
[dependencies]
1313
log = "0.3"
1414
parking_lot = "0.4"
15-
jsonrpc-core = { version = "7.0", path = "../core" }
15+
jsonrpc-core = { version = "7.1", path = "../core" }
1616

1717
[dev-dependencies]
18-
jsonrpc-tcp-server = { version = "7.0", path = "../tcp" }
18+
jsonrpc-tcp-server = { version = "7.1", path = "../tcp" }
1919

2020
[badges]
2121
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 = "7.0.1"
6+
version = "7.1.0"
77
authors = ["tomusdrw <tomasz@parity.io>"]
88
license = "MIT"
99

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

server-utils/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
description = "Server utils for jsonrpc-core crate."
33
name = "jsonrpc-server-utils"
4-
version = "7.0.1"
4+
version = "7.1.0"
55
authors = ["tomusdrw <tomasz@parity.io>"]
66
license = "MIT"
77
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"]
@@ -12,7 +12,7 @@ repository = "https://github.com/paritytech/jsonrpc"
1212
[dependencies]
1313
globset = "0.1"
1414
log = "0.3"
15-
jsonrpc-core = { version = "7.0", path = "../core" }
15+
jsonrpc-core = { version = "7.1", path = "../core" }
1616
tokio-core = { version = "0.1" }
1717
tokio-io = { version = "0.1" }
1818
bytes = "0.4"

tcp/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "jsonrpc-tcp-server"
33
description = "TCP/IP server for JSON-RPC"
4-
version = "7.0.1"
4+
version = "7.1.0"
55
authors = ["NikVolf <nikvolf@gmail.com>"]
66
license = "MIT"
77
homepage = "https://github.com/paritytech/jsonrpc"
@@ -13,8 +13,8 @@ log = "0.3"
1313
parking_lot = "0.4"
1414
serde_json = "1.0"
1515
tokio-service = "0.1"
16-
jsonrpc-core = { version = "7.0", path = "../core" }
17-
jsonrpc-server-utils = { version = "7.0", path = "../server-utils" }
16+
jsonrpc-core = { version = "7.1", path = "../core" }
17+
jsonrpc-server-utils = { version = "7.1", path = "../server-utils" }
1818
bytes = "0.4"
1919

2020
[dev-dependencies]

ws/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "jsonrpc-ws-server"
33
description = "WebSockets server for JSON-RPC"
4-
version = "7.0.1"
4+
version = "7.1.0"
55
authors = ["tomusdrw <tomasz@parity.io>"]
66
license = "MIT"
77
homepage = "https://github.com/paritytech/jsonrpc"
@@ -10,8 +10,8 @@ documentation = "https://paritytech.github.io/jsonrpc/json_ws_server/index.html"
1010

1111
[dependencies]
1212
log = "0.3"
13-
jsonrpc-core = { version = "7.0", path = "../core" }
14-
jsonrpc-server-utils = { version = "7.0", path = "../server-utils" }
13+
jsonrpc-core = { version = "7.1", path = "../core" }
14+
jsonrpc-server-utils = { version = "7.1", path = "../server-utils" }
1515
ws = { git = "https://github.com/tomusdrw/ws-rs" }
1616
parking_lot = "0.4"
1717
slab = "0.3"

0 commit comments

Comments
 (0)