Skip to content

Commit 609d7a6

Browse files
authored
Bump minor version. (#624)
* Bump minor version. * Fix build warning. * Fix ui tests. * Remove windows runner since it's decomissioned.
1 parent 014b1ec commit 609d7a6

21 files changed

+50
-63
lines changed

.gitlab-ci.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,6 @@ test-linux-stable:
5656
<<: *only
5757
<<: *test_and_build
5858

59-
test-windows-stable:
60-
stage: test
61-
<<: *test_and_build
62-
<<: *only
63-
tags:
64-
- rust-windows
65-
6659
test-mac-stable:
6760
stage: test
6861
<<: *test_and_build

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 = "17.0.0"
11+
version = "17.1.0"
1212

1313
categories = [
1414
"asynchronous",
@@ -26,7 +26,7 @@ ipc = ["jsonrpc-client-transports/ipc"]
2626
arbitrary_precision = ["jsonrpc-client-transports/arbitrary_precision"]
2727

2828
[dependencies]
29-
jsonrpc-client-transports = { version = "17.0", path = "./transports", default-features = false }
29+
jsonrpc-client-transports = { version = "17.1", path = "./transports", default-features = false }
3030
futures = { version = "0.3", features = [ "compat" ] }
3131

3232
[badges]

core-client/transports/Cargo.toml

Lines changed: 6 additions & 6 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 = "17.0.0"
11+
version = "17.1.0"
1212

1313
categories = [
1414
"asynchronous",
@@ -37,24 +37,24 @@ arbitrary_precision = ["serde_json/arbitrary_precision", "jsonrpc-core/arbitrary
3737
[dependencies]
3838
derive_more = "0.99"
3939
futures = "0.3"
40-
jsonrpc-core = { version = "17.0", path = "../../core" }
41-
jsonrpc-pubsub = { version = "17.0", path = "../../pubsub" }
40+
jsonrpc-core = { version = "17.1", path = "../../core" }
41+
jsonrpc-pubsub = { version = "17.1", path = "../../pubsub" }
4242
log = "0.4"
4343
serde = { version = "1.0", features = ["derive"] }
4444
serde_json = "1.0"
4545
url = "1.7"
4646

4747
hyper = { version = "0.13", optional = true }
4848
hyper-tls = { version = "0.4", optional = true }
49-
jsonrpc-server-utils = { version = "17.0", path = "../../server-utils", optional = true }
49+
jsonrpc-server-utils = { version = "17.1", path = "../../server-utils", optional = true }
5050
parity-tokio-ipc = { version = "0.8", optional = true }
5151
tokio = { version = "0.2", optional = true }
5252
websocket = { version = "0.24", optional = true }
5353

5454
[dev-dependencies]
5555
assert_matches = "1.1"
56-
jsonrpc-http-server = { version = "17.0", path = "../../http" }
57-
jsonrpc-ipc-server = { version = "17.0", path = "../../ipc" }
56+
jsonrpc-http-server = { version = "17.1", path = "../../http" }
57+
jsonrpc-ipc-server = { version = "17.1", path = "../../ipc" }
5858
lazy_static = "1.0"
5959
env_logger = "0.7"
6060

core-client/transports/src/transports/http.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ mod tests {
273273

274274
if let Err(RpcError::Other(err)) = res {
275275
if let Some(err) = err.downcast_ref::<hyper::Error>() {
276-
assert!(err.is_connect(), format!("Expected Connection Error, got {:?}", err))
276+
assert!(err.is_connect(), "Expected Connection Error, got {:?}", err)
277277
} else {
278278
panic!("Expected a hyper::Error")
279279
}

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 = "17.0.0"
11+
version = "17.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 = "17.0.0"
10+
version = "17.1.0"
1111

1212
[lib]
1313
proc-macro = true
@@ -20,10 +20,10 @@ proc-macro-crate = "0.1.4"
2020

2121
[dev-dependencies]
2222
assert_matches = "1.3"
23-
jsonrpc-core = { version = "17.0", path = "../core" }
24-
jsonrpc-core-client = { version = "17.0", path = "../core-client" }
25-
jsonrpc-pubsub = { version = "17.0", path = "../pubsub" }
26-
jsonrpc-tcp-server = { version = "17.0", path = "../tcp" }
23+
jsonrpc-core = { version = "17.1", path = "../core" }
24+
jsonrpc-core-client = { version = "17.1", path = "../core-client" }
25+
jsonrpc-pubsub = { version = "17.1", path = "../pubsub" }
26+
jsonrpc-tcp-server = { version = "17.1", path = "../tcp" }
2727
serde = { version = "1.0", features = ["derive"] }
2828
serde_json = "1.0"
2929
trybuild = "1.0"
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
error: Invalid attribute parameter(s): 'Xalias'. Expected 'alias'
22
--> $DIR/attr-invalid-meta-list-names.rs:5:2
33
|
4-
5 | /// Returns a protocol version
5-
| _____^
4+
5 | / /// Returns a protocol version
65
6 | | #[rpc(name = "protocolVersion", Xalias("alias"))]
76
7 | | fn protocol_version(&self) -> Result<String>;
87
| |_________________________________________________^
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
error: Invalid attribute parameter(s): 'Xmeta'. Expected 'meta, raw_params'
22
--> $DIR/attr-invalid-meta-words.rs:5:2
33
|
4-
5 | /// Returns a protocol version
5-
| _____^
4+
5 | / /// Returns a protocol version
65
6 | | #[rpc(name = "protocolVersion", Xmeta)]
76
7 | | fn protocol_version(&self) -> Result<String>;
87
| |_________________________________________________^
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
error: Invalid attribute parameter(s): 'Xname'. Expected 'name, returns, params'
22
--> $DIR/attr-invalid-name-values.rs:5:2
33
|
4-
5 | /// Returns a protocol version
5-
| _____^
4+
5 | / /// Returns a protocol version
65
6 | | #[rpc(Xname = "protocolVersion")]
76
7 | | fn protocol_version(&self) -> Result<String>;
87
| |_________________________________________________^
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
error: rpc attribute should have a name e.g. `name = "method_name"`
22
--> $DIR/attr-missing-rpc-name.rs:5:2
33
|
4-
5 | /// Returns a protocol version
5-
| _____^
4+
5 | / /// Returns a protocol version
65
6 | | #[rpc]
76
7 | | fn protocol_version(&self) -> Result<String>;
87
| |_________________________________________________^

0 commit comments

Comments
 (0)