From fd55e7fce43d54108bc15829678ad03ed961b14f Mon Sep 17 00:00:00 2001 From: maxrobot Date: Tue, 19 Mar 2024 16:52:54 +0000 Subject: [PATCH] bump --- Cargo.lock | 15 ++++++++++++--- Changelog.md | 16 +++++++--------- contracts/swap/Cargo.toml | 4 ++-- 3 files changed, 21 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6ccb2d1..af5fa65 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -404,7 +404,7 @@ dependencies = [ "hex", "schemars", "serde", - "serde-json-wasm", + "serde-json-wasm 0.5.1", "sha2 0.10.6", "static_assertions 1.1.0", "thiserror", @@ -2166,6 +2166,15 @@ dependencies = [ "serde", ] +[[package]] +name = "serde-json-wasm" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f05da0d153dd4595bdffd5099dc0e9ce425b205ee648eb93437ff7302af8c9a5" +dependencies = [ + "serde", +] + [[package]] name = "serde_bytes" version = "0.11.9" @@ -2366,7 +2375,7 @@ checksum = "734676eb262c623cec13c3155096e08d1f8f29adce39ba17948b18dad1e54142" [[package]] name = "swap-contract" -version = "1.0.1" +version = "1.0.2" dependencies = [ "cosmos-sdk-proto", "cosmwasm-schema", @@ -2386,7 +2395,7 @@ dependencies = [ "protobuf", "schemars", "serde", - "serde-json-wasm", + "serde-json-wasm 1.0.1", "thiserror", ] diff --git a/Changelog.md b/Changelog.md index 431d467..b2fc3c4 100644 --- a/Changelog.md +++ b/Changelog.md @@ -16,7 +16,13 @@ All notable changes to this project will be documented in this file. - -## [Version v1.1.0] - 2024-02-24 +## [1.0.2] - 2024-03-19 + +### Fixed + +- Bump version of `serde-json-wasm` + +## [1.0.1] - 2024-02-24 ### Added @@ -24,10 +30,6 @@ All notable changes to this project will be documented in this file. - `rust-toolchain` file - Contract migration templates and migrate function -### Changed - -- - ### Fixed - Correctly round to `min_quantity_tick_size` in intermediate steps for multi-hop buys @@ -41,7 +43,3 @@ All notable changes to this project will be documented in this file. ### Changed - Updated to latest CosmWasm version - -### Fixed - -- diff --git a/contracts/swap/Cargo.toml b/contracts/swap/Cargo.toml index aa57bc1..f9f0608 100644 --- a/contracts/swap/Cargo.toml +++ b/contracts/swap/Cargo.toml @@ -2,7 +2,7 @@ authors = [ "Markus Waas " ] edition = "2021" name = "swap-contract" -version = "1.0.1" +version = "1.0.2" exclude = [ # Those files are rust-optimizer artifacts. You might want to commit them for convenience but they should not be part of the source code publication. @@ -41,7 +41,7 @@ num-traits = "0.2.15" protobuf = { version = "2", features = [ "with-bytes" ] } schemars = "0.8.8" serde = { version = "1.0.137", default-features = false, features = [ "derive" ] } -serde-json-wasm = "0.5.1" +serde-json-wasm = "1.0.1" thiserror = { version = "1.0.31" } [dev-dependencies]