Skip to content

Commit

Permalink
Bump version to 1.1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
toml01 committed Oct 18, 2023
1 parent c820d3f commit 55ed7ff
Show file tree
Hide file tree
Showing 11 changed files with 30 additions and 30 deletions.
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions contracts/hackatom/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/crypto-compat/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cosmwasm-crypto"
version = "1.1.10"
version = "1.1.11"
authors = ["SCRT Labs <[email protected]>"]
edition = "2021"
description = "Compatability layer for contracts that want to use the git versions of the std fork with a patch"
Expand Down
2 changes: 1 addition & 1 deletion packages/crypto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "secret-cosmwasm-crypto"
version = "1.1.10"
version = "1.1.11"
authors = [
"Mauro Lacy <[email protected]>",
"SCRT Labs <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion packages/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cosmwasm-derive"
version = "1.1.10"
version = "1.1.11"
authors = ["Simon Warta <[email protected]>"]
edition = "2021"
description = "A package for auto-generated code used for CosmWasm contract development. This is shipped as part of cosmwasm-std. Do not use directly."
Expand Down
2 changes: 1 addition & 1 deletion packages/schema-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cosmwasm-schema-derive"
version = "1.1.10"
version = "1.1.11"
authors = ["Tomasz Kurcz <[email protected]>"]
edition = "2021"
description = "Derive macros for cosmwasm-schema"
Expand Down
4 changes: 2 additions & 2 deletions packages/schema/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cosmwasm-schema"
version = "1.1.10"
version = "1.1.11"
authors = [
"Simon Warta <[email protected]>",
"Ethan Frey <[email protected]>",
Expand All @@ -11,7 +11,7 @@ repository = "https://github.com/CosmWasm/cosmwasm/tree/main/packages/schema"
license = "Apache-2.0"

[dependencies]
cosmwasm-schema-derive = { version = "=1.1.10", path = "../schema-derive" }
cosmwasm-schema-derive = { version = "=1.1.11", path = "../schema-derive" }
schemars = "0.8.3"
serde = "1.0"
serde_json = "1.0.40"
Expand Down
2 changes: 1 addition & 1 deletion packages/std-compat/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cosmwasm-std"
version = "1.1.10"
version = "1.1.11"
edition = "2021"
description = "Compatability layer for contracts that want to use the git versions of the std fork with a patch"

Expand Down
6 changes: 3 additions & 3 deletions packages/std/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "secret-cosmwasm-std"
version = "1.1.10"
version = "1.1.11"
authors = [
"Ethan Frey <[email protected]>",
"SCRT Labs <[email protected]>",
Expand Down Expand Up @@ -45,7 +45,7 @@ random = []

[dependencies]
base64 = "0.13.0"
cosmwasm-derive = { path = "../derive", version = "1.1.10" }
cosmwasm-derive = { path = "../derive", version = "1.1.11" }

serde-json-wasm = { version = "0.4.1" }
schemars = "0.8.3"
Expand All @@ -60,7 +60,7 @@ hex = "0.4"
uint = "0.9.3"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
secret-cosmwasm-crypto = { path = "../crypto", version = "1.1.10" }
secret-cosmwasm-crypto = { path = "../crypto", version = "1" }

[dev-dependencies]
cosmwasm-schema = { path = "../schema" }
Expand Down
2 changes: 1 addition & 1 deletion packages/storage-compat/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cosmwasm-storage"
version = "1.1.10"
version = "1.1.11"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
4 changes: 2 additions & 2 deletions packages/storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "secret-cosmwasm-storage"
version = "1.1.10"
version = "1.1.11"
authors = [
"Ethan Frey <[email protected]>",
"SCRT Labs <[email protected]>",
Expand All @@ -19,7 +19,7 @@ iterator = ["secret-cosmwasm-std/iterator"]

[dependencies]
# Uses the path when built locally; uses the given version from crates.io when published
secret-cosmwasm-std = { version = "1.1.10", path = "../std", default-features = false }
secret-cosmwasm-std = { version = "1.1.11", path = "../std", default-features = false }
serde = { version = "1.0.103", default-features = false, features = [
"derive",
"alloc",
Expand Down

0 comments on commit 55ed7ff

Please sign in to comment.