Skip to content

Commit 9435cdb

Browse files
committed
Bump crate versions
1 parent 4f52f46 commit 9435cdb

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

xrpl_address_codec/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "xrpl_address_codec"
33
description = "Binary serialization for XRPL Protocol addresses"
4-
version = "0.9.0"
4+
version = "0.10.0"
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/gmosx/xrpl_sdk_rust/tree/main/xrpl_address_codec"

xrpl_api/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "xrpl_api"
33
description = "XRPL Protocol endpoints and resouces"
4-
version = "0.9.0"
4+
version = "0.10.0"
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/gmosx/xrpl_sdk_rust/tree/main/xrpl_api"
@@ -11,4 +11,4 @@ authors = ["George Moschovitis <[email protected]>"]
1111
[dependencies]
1212
serde = { version = "1", features = ["derive"]}
1313
serde_json = "1"
14-
xrpl_types = { path = "../xrpl_types", version = "0.9" }
14+
xrpl_types = { path = "../xrpl_types", version = "0.10" }

xrpl_binary_codec/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "xrpl_binary_codec"
33
description = "Binary serialization for XRPL Protocol objects"
4-
version = "0.9.0"
4+
version = "0.10.0"
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/gmosx/xrpl_sdk_rust/tree/main/xrpl_binary_codec"
77
keywords = ["xrpl", "ledger", "api", "protocol"]
@@ -15,4 +15,4 @@ hex = "0.4"
1515
bs58 = "0.4"
1616
sha2 = "0.9"
1717
libsecp256k1 = "0.5"
18-
xrpl_types = { path = "../xrpl_types", version = "0.9" }
18+
xrpl_types = { path = "../xrpl_types", version = "0.10" }

xrpl_cli/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "xrpl_cli"
33
description = "A CLI for the XRP Ledger"
4-
version = "0.9.0"
4+
version = "0.10.0"
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/gmosx/xrpl_sdk_rust/tree/main/xrpl_sdk_jsonrpc"
77
keywords = ["xrpl", "ledger", "cli"]
@@ -17,7 +17,7 @@ serde = { version = "1", features = ["derive"]}
1717
serde_json = "1"
1818
tracing = "0.1"
1919
tracing-subscriber = "0.2"
20-
xrpl_sdk_jsonrpc = { path = "../xrpl_sdk_jsonrpc", version = "0.9" }
20+
xrpl_sdk_jsonrpc = { path = "../xrpl_sdk_jsonrpc", version = "0.10" }
2121

2222
[[bin]]
2323
name = "xrpl"

xrpl_sdk_jsonrpc/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "xrpl_sdk_jsonrpc"
33
description = "A strongly-typed client for the XRP Ledger JSONRPC API"
4-
version = "0.9.0"
4+
version = "0.10.0"
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/gmosx/xrpl_sdk_rust/tree/main/xrpl_sdk_jsonrpc"
77
keywords = ["xrpl", "ledger", "client", "jsonrpc", "api"]
@@ -17,6 +17,6 @@ reqwest = { version = "0.11", features = ["json"] }
1717
sha2 = "0.9"
1818
libsecp256k1 = "0.5"
1919
tracing = "0.1"
20-
xrpl_types = { path = "../xrpl_types", version = "0.9" }
21-
xrpl_api = { path = "../xrpl_api", version = "0.9" }
22-
xrpl_binary_codec = { path = "../xrpl_binary_codec", version = "0.9" }
20+
xrpl_types = { path = "../xrpl_types", version = "0.10" }
21+
xrpl_api = { path = "../xrpl_api", version = "0.10" }
22+
xrpl_binary_codec = { path = "../xrpl_binary_codec", version = "0.10" }

xrpl_sdk_ws/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "xrpl_sdk_ws"
33
description = "A strongly-typed client for the XRP Ledger WebSocket API"
4-
version = "0.9.0"
4+
version = "0.10.0"
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/gmosx/xrpl_sdk_rust/tree/main/xrpl_sdk_jsonrpc"
77
keywords = ["xrpl", "ledger", "client", "websocket", "api"]
@@ -20,6 +20,6 @@ tokio-tungstenite = { version = "0.17", features = ["rustls-tls-webpki-roots"] }
2020
async-stream = "0.3"
2121
tracing = "0.1"
2222
uuid = { version = "1", features = ["v4", "fast-rng"] }
23-
xrpl_types = { path = "../xrpl_types", version = "0.9" }
24-
xrpl_api = { path = "../xrpl_api", version = "0.9" }
25-
xrpl_binary_codec = { path = "../xrpl_binary_codec", version = "0.9" }
23+
xrpl_types = { path = "../xrpl_types", version = "0.10" }
24+
xrpl_api = { path = "../xrpl_api", version = "0.10" }
25+
xrpl_binary_codec = { path = "../xrpl_binary_codec", version = "0.10" }

xrpl_types/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "xrpl_types"
33
description = "Core types and related functions for the XRP Ledger"
4-
version = "0.9.0"
4+
version = "0.10.0"
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/gmosx/xrpl_sdk_rust/tree/main/xrpl_types"
77
keywords = ["xrpl", "ledger", "api"]

0 commit comments

Comments
 (0)