Bump to 0.18.1 (#467)

This commit is contained in:
James Wilson
2022-03-04 11:57:00 +00:00
committed by GitHub
parent 2c572aa9d8
commit 14ef6c8256
7 changed files with 15 additions and 9 deletions
+6
View File
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.18.1] - 2022-03-04
# Fixed
- Remove unused `sp_version` dependency to fix duplicate `parity-scale-codec` deps ([#466](https://github.com/paritytech/subxt/pull/466))
## [0.18.0] - 2022-03-02 ## [0.18.0] - 2022-03-02
### Added ### Added
+2 -2
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "subxt-cli" name = "subxt-cli"
version = "0.18.0" version = "0.18.1"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021" edition = "2021"
@@ -16,7 +16,7 @@ path = "src/main.rs"
[dependencies] [dependencies]
# perform subxt codegen # perform subxt codegen
subxt-codegen = { version = "0.18.0", path = "../codegen" } subxt-codegen = { version = "0.18.1", path = "../codegen" }
# parse command line args # parse command line args
structopt = "0.3.25" structopt = "0.3.25"
# make the request to a substrate node to get the metadata # make the request to a substrate node to get the metadata
+1 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "subxt-codegen" name = "subxt-codegen"
version = "0.18.0" version = "0.18.1"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021" edition = "2021"
+1 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "subxt-examples" name = "subxt-examples"
version = "0.18.0" version = "0.18.1"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021" edition = "2021"
publish = false publish = false
+2 -2
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "subxt-macro" name = "subxt-macro"
version = "0.18.0" version = "0.18.1"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021" edition = "2021"
autotests = false autotests = false
@@ -27,7 +27,7 @@ quote = "1.0.8"
syn = "1.0.58" syn = "1.0.58"
scale-info = "2.0.0" scale-info = "2.0.0"
subxt-codegen = { path = "../codegen", version = "0.18.0" } subxt-codegen = { path = "../codegen", version = "0.18.1" }
[dev-dependencies] [dev-dependencies]
pretty_assertions = "1.0.0" pretty_assertions = "1.0.0"
+2 -2
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "subxt" name = "subxt"
version = "0.18.0" version = "0.18.1"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021" edition = "2021"
@@ -27,7 +27,7 @@ serde = { version = "1.0.124", features = ["derive"] }
serde_json = "1.0.64" serde_json = "1.0.64"
thiserror = "1.0.24" thiserror = "1.0.24"
subxt-macro = { version = "0.18.0", path = "../macro" } subxt-macro = { version = "0.18.1", path = "../macro" }
sp-core = { version = "6.0.0", default-features = false } sp-core = { version = "6.0.0", default-features = false }
sp-runtime = "6.0.0" sp-runtime = "6.0.0"
+1 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "test-runtime" name = "test-runtime"
version = "0.18.0" version = "0.18.1"
edition = "2021" edition = "2021"
[dependencies] [dependencies]