From 14ef6c8256e058aca222ea5e2ae0c9d7073778e2 Mon Sep 17 00:00:00 2001 From: James Wilson Date: Fri, 4 Mar 2022 11:57:00 +0000 Subject: [PATCH] Bump to 0.18.1 (#467) --- CHANGELOG.md | 6 ++++++ cli/Cargo.toml | 4 ++-- codegen/Cargo.toml | 2 +- examples/Cargo.toml | 2 +- macro/Cargo.toml | 4 ++-- subxt/Cargo.toml | 4 ++-- test-runtime/Cargo.toml | 2 +- 7 files changed, 15 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b034195d1..2fde76e969 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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/), 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 ### Added diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 099e139fa8..82a6f73d59 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subxt-cli" -version = "0.18.0" +version = "0.18.1" authors = ["Parity Technologies "] edition = "2021" @@ -16,7 +16,7 @@ path = "src/main.rs" [dependencies] # perform subxt codegen -subxt-codegen = { version = "0.18.0", path = "../codegen" } +subxt-codegen = { version = "0.18.1", path = "../codegen" } # parse command line args structopt = "0.3.25" # make the request to a substrate node to get the metadata diff --git a/codegen/Cargo.toml b/codegen/Cargo.toml index 2f52dc2e9e..d52f816b48 100644 --- a/codegen/Cargo.toml +++ b/codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subxt-codegen" -version = "0.18.0" +version = "0.18.1" authors = ["Parity Technologies "] edition = "2021" diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 5fecbd1988..3904517287 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subxt-examples" -version = "0.18.0" +version = "0.18.1" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/macro/Cargo.toml b/macro/Cargo.toml index 14db5ea5f7..2e434fb3f7 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subxt-macro" -version = "0.18.0" +version = "0.18.1" authors = ["Parity Technologies "] 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.18.0" } +subxt-codegen = { path = "../codegen", version = "0.18.1" } [dev-dependencies] pretty_assertions = "1.0.0" diff --git a/subxt/Cargo.toml b/subxt/Cargo.toml index 27f13a889a..eb92b76401 100644 --- a/subxt/Cargo.toml +++ b/subxt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subxt" -version = "0.18.0" +version = "0.18.1" authors = ["Parity Technologies "] 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.18.0", path = "../macro" } +subxt-macro = { version = "0.18.1", path = "../macro" } sp-core = { version = "6.0.0", default-features = false } sp-runtime = "6.0.0" diff --git a/test-runtime/Cargo.toml b/test-runtime/Cargo.toml index b05f9a8085..bc542d3b0e 100644 --- a/test-runtime/Cargo.toml +++ b/test-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-runtime" -version = "0.18.0" +version = "0.18.1" edition = "2021" [dependencies]