Skip to content

Commit 2a4da61

Browse files
authored
Release 0.28 (#906)
* wip changelog * Bump versions and write changelog for 0.28 * typo and wee tweaks
1 parent a36a691 commit 2a4da61

File tree

11 files changed

+160
-29
lines changed

11 files changed

+160
-29
lines changed

CHANGELOG.md

Lines changed: 134 additions & 3 deletions
Large diffs are not rendered by default.

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "subxt-cli"
3-
version = "0.27.1"
3+
version = "0.28.0"
44
authors.workspace = true
55
edition.workspace = true
66
rust-version.workspace = true
@@ -18,9 +18,9 @@ path = "src/main.rs"
1818

1919
[dependencies]
2020
# perform subxt codegen
21-
subxt-codegen = { version = "0.27.1", path = "../codegen" }
21+
subxt-codegen = { version = "0.28.0", path = "../codegen" }
2222
# perform node compatibility
23-
subxt-metadata = { version = "0.27.1", path = "../metadata" }
23+
subxt-metadata = { version = "0.28.0", path = "../metadata" }
2424
# parse command line args
2525
clap = { version = "4.1.11", features = ["derive", "cargo"] }
2626
# colourful error reports

codegen/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "subxt-codegen"
3-
version = "0.27.1"
3+
version = "0.28.0"
44
authors.workspace = true
55
edition.workspace = true
66
rust-version.workspace = true
@@ -21,7 +21,7 @@ proc-macro2 = "1.0.55"
2121
quote = "1.0.8"
2222
syn = "1.0.109"
2323
scale-info = "2.5.0"
24-
subxt-metadata = { version = "0.27.1", path = "../metadata" }
24+
subxt-metadata = { version = "0.28.0", path = "../metadata" }
2525
jsonrpsee = { version = "0.16.0", features = ["async-client", "client-ws-transport", "http-client"] }
2626
hex = "0.4.3"
2727
tokio = { version = "1.27", features = ["macros", "rt-multi-thread"] }

examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "subxt-examples"
3-
version = "0.27.1"
3+
version = "0.28.0"
44
authors.workspace = true
55
edition.workspace = true
66
rust-version.workspace = true

macro/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "subxt-macro"
3-
version = "0.27.1"
3+
version = "0.28.0"
44
authors.workspace = true
55
edition.workspace = true
66
rust-version.workspace = true
@@ -21,4 +21,4 @@ darling = "0.14.4"
2121
proc-macro-error = "1.0.4"
2222
syn = "1.0.109"
2323

24-
subxt-codegen = { path = "../codegen", version = "0.27.1" }
24+
subxt-codegen = { path = "../codegen", version = "0.28.0" }

metadata/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "subxt-metadata"
3-
version = "0.27.1"
3+
version = "0.28.0"
44
authors.workspace = true
55
edition.workspace = true
66
rust-version.workspace = true

subxt/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "subxt"
3-
version = "0.27.1"
3+
version = "0.28.0"
44
authors.workspace = true
55
edition.workspace = true
66
rust-version.workspace = true
@@ -53,8 +53,8 @@ frame-metadata = "15.0.0"
5353
derivative = "2.2.0"
5454
either = "1.8.1"
5555

56-
subxt-macro = { version = "0.27.1", path = "../macro" }
57-
subxt-metadata = { version = "0.27.1", path = "../metadata" }
56+
subxt-macro = { version = "0.28.0", path = "../macro" }
57+
subxt-metadata = { version = "0.28.0", path = "../metadata" }
5858

5959
# Provides some deserialization, types like U256/H256 and hashing impls like twox/blake256:
6060
impl-serde = { version = "0.4.0" }

testing/integration-tests/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "integration-tests"
3-
version = "0.27.1"
3+
version = "0.28.0"
44
authors.workspace = true
55
edition.workspace = true
66
rust-version.workspace = true
@@ -27,8 +27,8 @@ sp-core = { version = "20.0.0", default-features = false }
2727
sp-runtime = "23.0.0"
2828
sp-keyring = "23.0.0"
2929
syn = "1.0.109"
30-
subxt = { version = "0.27.1", path = "../../subxt" }
31-
subxt-codegen = { version = "0.27.1", path = "../../codegen" }
30+
subxt = { version = "0.28.0", path = "../../subxt" }
31+
subxt-codegen = { version = "0.28.0", path = "../../codegen" }
3232
test-runtime = { path = "../test-runtime" }
3333
tokio = { version = "1.27", features = ["macros", "time"] }
3434
tracing = "0.1.34"

testing/test-runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test-runtime"
3-
version = "0.27.1"
3+
version = "0.28.0"
44
edition = "2021"
55
publish = false
66

testing/ui-tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ui-tests"
3-
version = "0.27.1"
3+
version = "0.28.0"
44
edition = "2021"
55
publish = false
66

0 commit comments

Comments
 (0)