Skip to content

Commit 2f6c8e9

Browse files
authored
prep for 0.2.0-alpha.4 (#259)
* prep for 0.2.0-alpha.4 * [http server]: reuse port unix only * skip `reuse_port` on socket
1 parent 4c9ced8 commit 2f6c8e9

File tree

8 files changed

+15
-16
lines changed

8 files changed

+15
-16
lines changed

http-client/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jsonrpsee-http-client"
3-
version = "0.2.0-alpha.3"
3+
version = "0.2.0-alpha.4"
44
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"]
55
description = "HTTP client for JSON-RPC"
66
edition = "2018"
@@ -13,8 +13,8 @@ hyper13-rustls = { package = "hyper-rustls", version = "0.21", optional = true }
1313
hyper14-rustls = { package = "hyper-rustls", version = "0.22", optional = true }
1414
hyper14 = { package = "hyper", version = "0.14", features = ["client", "http1", "http2", "tcp"], optional = true }
1515
hyper13 = { package = "hyper", version = "0.13", optional = true }
16-
jsonrpsee-types = { path = "../types", version = "0.2.0-alpha.3" }
17-
jsonrpsee-utils = { path = "../utils", version = "0.2.0-alpha.3", default-features = false, optional = true }
16+
jsonrpsee-types = { path = "../types", version = "0.2.0-alpha.4" }
17+
jsonrpsee-utils = { path = "../utils", version = "0.2.0-alpha.4", default-features = false, optional = true }
1818
log = "0.4"
1919
serde = { version = "1.0", default-features = false, features = ["derive"] }
2020
serde_json = "1.0"

http-server/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jsonrpsee-http-server"
3-
version = "0.2.0-alpha.3"
3+
version = "0.2.0-alpha.4"
44
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"]
55
description = "HTTP server for JSON-RPC"
66
edition = "2018"
@@ -9,8 +9,8 @@ license = "MIT"
99
[dependencies]
1010
anyhow = "1"
1111
hyper = { version = "0.14", features = ["stream", "server", "http1", "http2", "tcp"] }
12-
jsonrpsee-types = { path = "../types", version = "0.2.0-alpha.3" }
13-
jsonrpsee-utils = { path = "../utils", version = "0.2.0-alpha.3" }
12+
jsonrpsee-types = { path = "../types", version = "0.2.0-alpha.4" }
13+
jsonrpsee-utils = { path = "../utils", version = "0.2.0-alpha.4" }
1414
log = "0.4"
1515
serde = { version = "1", default-features = false, features = ["derive"] }
1616
serde_json = "1"

http-server/src/server.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ impl Builder {
8181
let socket = Socket::new(domain, Type::STREAM, None)?;
8282
socket.set_nodelay(true)?;
8383
socket.set_reuse_address(true)?;
84-
socket.set_reuse_port(true)?;
8584
socket.set_nonblocking(true)?;
8685
socket.set_keepalive(self.keep_alive)?;
8786
let address = addr.into();

proc-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "jsonrpsee-proc-macros"
33
description = "Procedueral macros for jsonrpsee"
4-
version = "0.2.0-alpha.3"
4+
version = "0.2.0-alpha.4"
55
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"]
66
license = "MIT"
77
edition = "2018"

types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jsonrpsee-types"
3-
version = "0.2.0-alpha.3"
3+
version = "0.2.0-alpha.4"
44
authors = ["Parity Technologies <[email protected]>"]
55
description = "Shared types for jsonrpsee"
66
edition = "2018"

utils/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jsonrpsee-utils"
3-
version = "0.2.0-alpha.3"
3+
version = "0.2.0-alpha.4"
44
authors = ["Parity Technologies <[email protected]>"]
55
description = "Utilities for jsonrpsee"
66
edition = "2018"
@@ -12,7 +12,7 @@ futures = "0.3"
1212
globset = "0.4"
1313
hyper13 = { package = "hyper", version = "0.13", default-features = false, features = ["stream"], optional = true }
1414
hyper14 = { package = "hyper", version = "0.14", default-features = false, features = ["stream"], optional = true }
15-
jsonrpsee-types = { path = "../types", version = "0.2.0-alpha.3" }
15+
jsonrpsee-types = { path = "../types", version = "0.2.0-alpha.4" }
1616
lazy_static = "1.4"
1717
log = "0.4"
1818
rustc-hash = "1"

ws-client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jsonrpsee-ws-client"
3-
version = "0.2.0-alpha.3"
3+
version = "0.2.0-alpha.4"
44
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"]
55
description = "WebSocket client for JSON-RPC"
66
edition = "2018"
@@ -12,7 +12,7 @@ async-std = { version = "1.8", features = ["attributes"] }
1212
async-tls = "0.11"
1313
fnv = "1"
1414
futures = "0.3"
15-
jsonrpsee-types = { path = "../types", version = "0.2.0-alpha.3" }
15+
jsonrpsee-types = { path = "../types", version = "0.2.0-alpha.4" }
1616
log = "0.4"
1717
serde = { version = "1", default-features = false, features = ["derive"] }
1818
serde_json = "1"

ws-server/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jsonrpsee-ws-server"
3-
version = "0.2.0-alpha.3"
3+
version = "0.2.0-alpha.4"
44
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"]
55
description = "WebSocket server for JSON-RPC"
66
edition = "2018"
@@ -13,8 +13,8 @@ beef = "0.5"
1313
bs58 = "0.4"
1414
fnv = "1"
1515
futures = "0.3"
16-
jsonrpsee-types = { path = "../types", version = "0.2.0-alpha.3" }
17-
jsonrpsee-utils = { path = "../utils", version = "0.2.0-alpha.3" }
16+
jsonrpsee-types = { path = "../types", version = "0.2.0-alpha.4" }
17+
jsonrpsee-utils = { path = "../utils", version = "0.2.0-alpha.4" }
1818
log = "0.4"
1919
parking_lot = "0.11"
2020
rand = "0.8"

0 commit comments

Comments
 (0)