Skip to content

Commit

Permalink
chore(release): 0.2.0-alpha.7 (#344)
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasad1 authored May 27, 2021
1 parent 3a66732 commit 99cb814
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 23 deletions.
6 changes: 3 additions & 3 deletions http-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jsonrpsee-http-client"
version = "0.2.0-alpha.6"
version = "0.2.0-alpha.7"
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"]
description = "HTTP client for JSON-RPC"
edition = "2018"
Expand All @@ -15,8 +15,8 @@ hyper13-rustls = { package = "hyper-rustls", version = "0.21", optional = true }
hyper14-rustls = { package = "hyper-rustls", version = "0.22", optional = true }
hyper14 = { package = "hyper", version = "0.14", features = ["client", "http1", "http2", "tcp"], optional = true }
hyper13 = { package = "hyper", version = "0.13", optional = true }
jsonrpsee-types = { path = "../types", version = "0.2.0-alpha.6" }
jsonrpsee-utils = { path = "../utils", version = "0.2.0-alpha.6", optional = true }
jsonrpsee-types = { path = "../types", version = "0.2.0-alpha.7" }
jsonrpsee-utils = { path = "../utils", version = "0.2.0-alpha.7", optional = true }
log = "0.4"
serde = { version = "1.0", default-features = false, features = ["derive"] }
serde_json = "1.0"
Expand Down
6 changes: 3 additions & 3 deletions http-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jsonrpsee-http-server"
version = "0.2.0-alpha.6"
version = "0.2.0-alpha.7"
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"]
description = "HTTP server for JSON-RPC"
edition = "2018"
Expand All @@ -14,8 +14,8 @@ thiserror = "1"
hyper = { version = "0.14", features = ["server", "http1", "http2", "tcp"] }
futures-channel = "0.3.14"
futures-util = { version = "0.3.14", default-features = false }
jsonrpsee-types = { path = "../types", version = "0.2.0-alpha.6" }
jsonrpsee-utils = { path = "../utils", version = "0.2.0-alpha.6", features = ["server", "hyper_14"] }
jsonrpsee-types = { path = "../types", version = "0.2.0-alpha.7" }
jsonrpsee-utils = { path = "../utils", version = "0.2.0-alpha.7", features = ["server", "hyper_14"] }
globset = "0.4"
lazy_static = "1.4"
log = "0.4"
Expand Down
14 changes: 7 additions & 7 deletions jsonrpsee/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "jsonrpsee"
description = "JSON-RPC crate"
version = "0.2.0-alpha.6"
version = "0.2.0-alpha.7"
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"]
license = "MIT"
edition = "2018"
Expand All @@ -10,12 +10,12 @@ homepage = "https://github.com/paritytech/jsonrpsee"
documentation = "https://docs.rs/jsonrpsee"

[dependencies]
http-client = { path = "../http-client", version = "0.2.0-alpha.6", package = "jsonrpsee-http-client", optional = true }
http-server = { path = "../http-server", version = "0.2.0-alpha.6", package = "jsonrpsee-http-server", optional = true }
ws-client = { path = "../ws-client", version = "0.2.0-alpha.6", package = "jsonrpsee-ws-client", optional = true }
ws-server = { path = "../ws-server", version = "0.2.0-alpha.6", package = "jsonrpsee-ws-server", optional = true }
proc-macros = { path = "../proc-macros", version = "0.2.0-alpha.6", package = "jsonrpsee-proc-macros", optional = true }
types = { path = "../types", version = "0.2.0-alpha.6", package = "jsonrpsee-types", optional = true }
http-client = { path = "../http-client", version = "0.2.0-alpha.7", package = "jsonrpsee-http-client", optional = true }
http-server = { path = "../http-server", version = "0.2.0-alpha.7", package = "jsonrpsee-http-server", optional = true }
ws-client = { path = "../ws-client", version = "0.2.0-alpha.7", package = "jsonrpsee-ws-client", optional = true }
ws-server = { path = "../ws-server", version = "0.2.0-alpha.7", package = "jsonrpsee-ws-server", optional = true }
proc-macros = { path = "../proc-macros", version = "0.2.0-alpha.7", package = "jsonrpsee-proc-macros", optional = true }
types = { path = "../types", version = "0.2.0-alpha.7", package = "jsonrpsee-types", optional = true }

[features]
client = ["http-client", "ws-client"]
Expand Down
2 changes: 1 addition & 1 deletion proc-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "jsonrpsee-proc-macros"
description = "Procedueral macros for jsonrpsee"
version = "0.2.0-alpha.6"
version = "0.2.0-alpha.7"
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"]
license = "MIT"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion test-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jsonrpsee-test-utils"
version = "0.2.0-alpha.6"
version = "0.2.0-alpha.7"
authors = ["Parity Technologies <[email protected]>"]
license = "MIT"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jsonrpsee-types"
version = "0.2.0-alpha.6"
version = "0.2.0-alpha.7"
authors = ["Parity Technologies <[email protected]>"]
description = "Shared types for jsonrpsee"
edition = "2018"
Expand Down
4 changes: 2 additions & 2 deletions utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jsonrpsee-utils"
version = "0.2.0-alpha.6"
version = "0.2.0-alpha.7"
authors = ["Parity Technologies <[email protected]>"]
description = "Utilities for jsonrpsee"
edition = "2018"
Expand All @@ -12,7 +12,7 @@ futures-channel = { version = "0.3.14", default-features = false, optional = tru
futures-util = { version = "0.3.14", default-features = false, optional = true }
hyper13 = { package = "hyper", version = "0.13", default-features = false, features = ["stream"], optional = true }
hyper14 = { package = "hyper", version = "0.14", default-features = false, features = ["stream"], optional = true }
jsonrpsee-types = { path = "../types", version = "0.2.0-alpha.6", optional = true }
jsonrpsee-types = { path = "../types", version = "0.2.0-alpha.7", optional = true }
log = { version = "0.4", optional = true }
rustc-hash = { version = "1", optional = true }
rand = { version = "0.8", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions ws-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jsonrpsee-ws-client"
version = "0.2.0-alpha.6"
version = "0.2.0-alpha.7"
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"]
description = "WebSocket client for JSON-RPC"
edition = "2018"
Expand All @@ -15,7 +15,7 @@ async-std = "1"
async-tls = "0.11"
fnv = "1"
futures = { version = "0.3.14", default-features = false, features = ["std"] }
jsonrpsee-types = { path = "../types", version = "0.2.0-alpha.6" }
jsonrpsee-types = { path = "../types", version = "0.2.0-alpha.7" }
log = "0.4"
serde = "1"
serde_json = "1"
Expand Down
6 changes: 3 additions & 3 deletions ws-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jsonrpsee-ws-server"
version = "0.2.0-alpha.6"
version = "0.2.0-alpha.7"
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"]
description = "WebSocket server for JSON-RPC"
edition = "2018"
Expand All @@ -13,8 +13,8 @@ documentation = "https://docs.rs/jsonrpsee-ws-server"
thiserror = "1"
futures-channel = "0.3.14"
futures-util = { version = "0.3.14", default-features = false, features = ["io"] }
jsonrpsee-types = { path = "../types", version = "0.2.0-alpha.6" }
jsonrpsee-utils = { path = "../utils", version = "0.2.0-alpha.6", features = ["server"] }
jsonrpsee-types = { path = "../types", version = "0.2.0-alpha.7" }
jsonrpsee-utils = { path = "../utils", version = "0.2.0-alpha.7", features = ["server"] }
log = "0.4"
rustc-hash = "1.1.0"
serde = { version = "1", default-features = false, features = ["derive"] }
Expand Down

0 comments on commit 99cb814

Please sign in to comment.