-
Notifications
You must be signed in to change notification settings - Fork 262
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release preparation for v0.18.0 (#464)
* Bump release version to v0.18.0 Signed-off-by: Alexandru Vasile <[email protected]> * Update changelog Signed-off-by: Alexandru Vasile <[email protected]> * Update dependency version to v0.18.0 Signed-off-by: Alexandru Vasile <[email protected]> * Modify changelog Signed-off-by: Alexandru Vasile <[email protected]> * Move changelog entries from added to changed
- Loading branch information
Showing
7 changed files
with
28 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "subxt-cli" | ||
version = "0.17.0" | ||
version = "0.18.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -16,7 +16,7 @@ path = "src/main.rs" | |
|
||
[dependencies] | ||
# perform subxt codegen | ||
subxt-codegen = { version = "0.17.0", path = "../codegen" } | ||
subxt-codegen = { version = "0.18.0", path = "../codegen" } | ||
# parse command line args | ||
structopt = "0.3.25" | ||
# make the request to a substrate node to get the metadata | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "subxt-codegen" | ||
version = "0.17.0" | ||
version = "0.18.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "subxt-examples" | ||
version = "0.17.0" | ||
version = "0.18.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "subxt-macro" | ||
version = "0.17.0" | ||
version = "0.18.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
autotests = false | ||
|
@@ -27,7 +27,7 @@ quote = "1.0.8" | |
syn = "1.0.58" | ||
scale-info = "2.0.0" | ||
|
||
subxt-codegen = { path = "../codegen", version = "0.17.0" } | ||
subxt-codegen = { path = "../codegen", version = "0.18.0" } | ||
|
||
[dev-dependencies] | ||
pretty_assertions = "1.0.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "subxt" | ||
version = "0.17.0" | ||
version = "0.18.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -27,7 +27,7 @@ serde = { version = "1.0.124", features = ["derive"] } | |
serde_json = "1.0.64" | ||
thiserror = "1.0.24" | ||
|
||
subxt-macro = { version = "0.17.0", path = "../macro" } | ||
subxt-macro = { version = "0.18.0", path = "../macro" } | ||
|
||
sp-core = { version = "6.0.0", default-features = false } | ||
sp-runtime = "6.0.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "test-runtime" | ||
version = "0.17.0" | ||
version = "0.18.0" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
|