Skip to content

Commit e40a15f

Browse files
authored
Bump versions to 1.1.9 (#11)
1 parent 4349081 commit e40a15f

File tree

8 files changed

+30
-27
lines changed

8 files changed

+30
-27
lines changed

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contracts/hackatom/Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/crypto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cosmwasm-crypto"
3-
version = "1.1.0"
3+
version = "1.1.9"
44
authors = [
55
"Mauro Lacy <maurolacy@users.noreply.github.com>",
66
"SCRT Labs <info@scrtlabs.com>",

packages/derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cosmwasm-derive"
3-
version = "1.1.0"
3+
version = "1.1.9"
44
authors = ["Simon Warta <webmaster128@users.noreply.github.com>"]
55
edition = "2021"
66
description = "A package for auto-generated code used for CosmWasm contract development. This is shipped as part of cosmwasm-std. Do not use directly."

packages/schema-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cosmwasm-schema-derive"
3-
version = "1.1.0"
3+
version = "1.1.9"
44
authors = ["Tomasz Kurcz <tom@confio.gmbh>"]
55
edition = "2021"
66
description = "Derive macros for cosmwasm-schema"

packages/schema/Cargo.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
[package]
22
name = "cosmwasm-schema"
3-
version = "1.1.0"
4-
authors = ["Simon Warta <webmaster128@users.noreply.github.com>", "Ethan Frey <ethanfrey@users.noreply.github.com>"]
3+
version = "1.1.9"
4+
authors = [
5+
"Simon Warta <webmaster128@users.noreply.github.com>",
6+
"Ethan Frey <ethanfrey@users.noreply.github.com>",
7+
]
58
edition = "2021"
69
description = "A dev-dependency for CosmWasm contracts to generate JSON Schema files."
710
repository = "https://github.com/CosmWasm/cosmwasm/tree/main/packages/schema"
811
license = "Apache-2.0"
912

1013
[dependencies]
11-
cosmwasm-schema-derive = { version = "=1.1.0", path = "../schema-derive" }
14+
cosmwasm-schema-derive = { version = "=1.1.9", path = "../schema-derive" }
1215
schemars = "0.8.3"
1316
serde = "1.0"
1417
serde_json = "1.0.40"

packages/std/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cosmwasm-std"
3-
version = "1.1.0"
3+
version = "1.1.9"
44
authors = [
55
"Ethan Frey <ethanfrey@users.noreply.github.com>",
66
"SCRT Labs <info@scrtlabs.com>",
@@ -42,7 +42,7 @@ cosmwasm_1_1 = []
4242

4343
[dependencies]
4444
base64 = "0.13.0"
45-
cosmwasm-derive = { path = "../derive", version = "1.1.0" }
45+
cosmwasm-derive = { path = "../derive", version = "1.1.9" }
4646

4747
serde-json-wasm = { version = "0.4.1" }
4848
schemars = "0.8.3"
@@ -57,7 +57,7 @@ hex = "0.4"
5757
uint = "0.9.3"
5858

5959
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
60-
cosmwasm-crypto = { path = "../crypto", version = "1.1.0" }
60+
cosmwasm-crypto = { path = "../crypto", version = "1.1.9" }
6161

6262
[dev-dependencies]
6363
cosmwasm-schema = { path = "../schema" }

packages/storage/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cosmwasm-storage"
3-
version = "1.1.0"
3+
version = "1.1.9"
44
authors = [
55
"Ethan Frey <ethanfrey@users.noreply.github.com>",
66
"SCRT Labs <info@scrtlabs.com>",
@@ -19,7 +19,7 @@ iterator = ["cosmwasm-std/iterator"]
1919

2020
[dependencies]
2121
# Uses the path when built locally; uses the given version from crates.io when published
22-
cosmwasm-std = { version = "1.1.0", path = "../std", default-features = false }
22+
cosmwasm-std = { version = "1.1.9", path = "../std", default-features = false }
2323
serde = { version = "1.0.103", default-features = false, features = [
2424
"derive",
2525
"alloc",

0 commit comments

Comments
 (0)