From d0b1f1e945df06dc8c5602d4140094d6156d1842 Mon Sep 17 00:00:00 2001 From: Mike Mozhaev Date: Tue, 1 Aug 2023 16:05:30 +0300 Subject: [PATCH 1/3] Update Cargo.toml --- packages/neutron-sdk/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/neutron-sdk/Cargo.toml b/packages/neutron-sdk/Cargo.toml index fce79872..60033259 100644 --- a/packages/neutron-sdk/Cargo.toml +++ b/packages/neutron-sdk/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "neutron-sdk" description = "Neutron CosmWasm SDK for interacting with Neutron blockchain" -version = "0.6.0" +version = "0.6.1" edition = "2021" license = "Apache-2.0" repository = "https://github.com/neutron-org/neutron-sdk" @@ -39,4 +39,4 @@ cosmwasm-schema = "1.3.0" [dev-dependencies] cosmwasm-schema = { version = "1.3.0", default-features = false } prost-types = "0.11.1" -hex = "0.4.3" \ No newline at end of file +hex = "0.4.3" From c24bf99bc2a1b660610afbffdb0cc907aff38531 Mon Sep 17 00:00:00 2001 From: pr0n00gler Date: Tue, 1 Aug 2023 17:39:30 +0300 Subject: [PATCH 2/3] bump version --- contracts/ibc_transfer/Cargo.toml | 2 +- contracts/neutron_interchain_queries/Cargo.toml | 4 ++-- contracts/neutron_interchain_txs/Cargo.toml | 4 ++-- packages/neutron-sdk/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/contracts/ibc_transfer/Cargo.toml b/contracts/ibc_transfer/Cargo.toml index 07fb0884..b46242fe 100644 --- a/contracts/ibc_transfer/Cargo.toml +++ b/contracts/ibc_transfer/Cargo.toml @@ -39,7 +39,7 @@ schemars = "0.8.10" serde = { version = "1.0.149", default-features = false, features = ["derive"] } serde-json-wasm = { version = "0.5.1" } cw-storage-plus = { version = "1.1.0", features = ["iterator"]} -neutron-sdk = { path = "../../packages/neutron-sdk", default-features = false, version = "0.6.0"} +neutron-sdk = { path = "../../packages/neutron-sdk", default-features = false, version = "0.6.1"} protobuf = { version = "3.2.0", features = ["with-bytes"] } [dev-dependencies] diff --git a/contracts/neutron_interchain_queries/Cargo.toml b/contracts/neutron_interchain_queries/Cargo.toml index 3fcdc8d4..b881faeb 100644 --- a/contracts/neutron_interchain_queries/Cargo.toml +++ b/contracts/neutron_interchain_queries/Cargo.toml @@ -36,9 +36,9 @@ cosmwasm-std = { version = "1.3.0", features = ["staking"] } cw2 = "1.1.0" schemars = "0.8.10" serde = { version = "1.0.149", default-features = false, features = ["derive"] } -neutron-sdk = { path = "../../packages/neutron-sdk", default-features = false, version = "0.6.0"} +neutron-sdk = { path = "../../packages/neutron-sdk", default-features = false, version = "0.6.1"} base64 = "0.21.2" -cosmos-sdk-proto = { version = "0.16.0", default-features = false } +cosmos-sdk-proto = { version = "0.19.0", default-features = false } cw-storage-plus = { version = "1.1.0", features = ["iterator"]} prost = "0.11" serde-json-wasm = "0.5.1" diff --git a/contracts/neutron_interchain_txs/Cargo.toml b/contracts/neutron_interchain_txs/Cargo.toml index 1b9211d1..f3d530b4 100644 --- a/contracts/neutron_interchain_txs/Cargo.toml +++ b/contracts/neutron_interchain_txs/Cargo.toml @@ -38,8 +38,8 @@ schemars = "0.8.10" serde = { version = "1.0.149", default-features = false, features = ["derive"] } serde-json-wasm = { version = "0.5.1" } cw-storage-plus = { version = "1.1.0", features = ["iterator"]} -cosmos-sdk-proto = { version = "0.16.0", default-features = false } -neutron-sdk = { path = "../../packages/neutron-sdk", default-features = false, version = "0.6.0"} +cosmos-sdk-proto = { version = "0.19.0", default-features = false } +neutron-sdk = { path = "../../packages/neutron-sdk", default-features = false, version = "0.6.1"} base64 = "0.21.2" protobuf = { version = "3.2.0", features = ["with-bytes"] } prost = "0.11" diff --git a/packages/neutron-sdk/Cargo.toml b/packages/neutron-sdk/Cargo.toml index 60033259..b145a47d 100644 --- a/packages/neutron-sdk/Cargo.toml +++ b/packages/neutron-sdk/Cargo.toml @@ -23,7 +23,7 @@ overflow-checks = true [dependencies] cosmwasm-std = { version = "1.3.0", features = ["staking"] } -cosmos-sdk-proto = { version = "0.16.0", default-features = false } +cosmos-sdk-proto = { version = "0.19.0", default-features = false } prost = "0.11" serde = { version = "1.0.149", default-features = false, features = ["derive"] } schemars = "0.8.10" From 0fe2e84c64659689fdd95ace3ca2018db5d0f913 Mon Sep 17 00:00:00 2001 From: pr0n00gler Date: Tue, 1 Aug 2023 17:51:56 +0300 Subject: [PATCH 3/3] revert cosmos-sdk-proto version --- contracts/neutron_interchain_queries/Cargo.toml | 2 +- contracts/neutron_interchain_txs/Cargo.toml | 2 +- packages/neutron-sdk/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/contracts/neutron_interchain_queries/Cargo.toml b/contracts/neutron_interchain_queries/Cargo.toml index b881faeb..a7ffc747 100644 --- a/contracts/neutron_interchain_queries/Cargo.toml +++ b/contracts/neutron_interchain_queries/Cargo.toml @@ -38,7 +38,7 @@ schemars = "0.8.10" serde = { version = "1.0.149", default-features = false, features = ["derive"] } neutron-sdk = { path = "../../packages/neutron-sdk", default-features = false, version = "0.6.1"} base64 = "0.21.2" -cosmos-sdk-proto = { version = "0.19.0", default-features = false } +cosmos-sdk-proto = { version = "0.16.0", default-features = false } cw-storage-plus = { version = "1.1.0", features = ["iterator"]} prost = "0.11" serde-json-wasm = "0.5.1" diff --git a/contracts/neutron_interchain_txs/Cargo.toml b/contracts/neutron_interchain_txs/Cargo.toml index f3d530b4..7ae161ec 100644 --- a/contracts/neutron_interchain_txs/Cargo.toml +++ b/contracts/neutron_interchain_txs/Cargo.toml @@ -38,7 +38,7 @@ schemars = "0.8.10" serde = { version = "1.0.149", default-features = false, features = ["derive"] } serde-json-wasm = { version = "0.5.1" } cw-storage-plus = { version = "1.1.0", features = ["iterator"]} -cosmos-sdk-proto = { version = "0.19.0", default-features = false } +cosmos-sdk-proto = { version = "0.16.0", default-features = false } neutron-sdk = { path = "../../packages/neutron-sdk", default-features = false, version = "0.6.1"} base64 = "0.21.2" protobuf = { version = "3.2.0", features = ["with-bytes"] } diff --git a/packages/neutron-sdk/Cargo.toml b/packages/neutron-sdk/Cargo.toml index b145a47d..60033259 100644 --- a/packages/neutron-sdk/Cargo.toml +++ b/packages/neutron-sdk/Cargo.toml @@ -23,7 +23,7 @@ overflow-checks = true [dependencies] cosmwasm-std = { version = "1.3.0", features = ["staking"] } -cosmos-sdk-proto = { version = "0.19.0", default-features = false } +cosmos-sdk-proto = { version = "0.16.0", default-features = false } prost = "0.11" serde = { version = "1.0.149", default-features = false, features = ["derive"] } schemars = "0.8.10"