Skip to content

Commit c8a6149

Browse files
committed
Set version: 0.9.0-alpha3
1 parent 6b177a6 commit c8a6149

File tree

14 files changed

+36
-36
lines changed

14 files changed

+36
-36
lines changed

Cargo.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contracts/burner/Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contracts/hackatom/Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contracts/hackatom/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hackatom"
3-
version = "0.9.0-alpha2"
3+
version = "0.9.0-alpha3"
44
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
55
edition = "2018"
66
publish = false

contracts/queue/Cargo.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contracts/queue/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "queue"
3-
version = "0.9.0-alpha2"
3+
version = "0.9.0-alpha3"
44
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
55
edition = "2018"
66
publish = false

contracts/reflect/Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contracts/reflect/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "reflect"
3-
version = "0.9.0-alpha2"
3+
version = "0.9.0-alpha3"
44
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
55
publish = false
66
edition = "2018"

contracts/staking/Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contracts/staking/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "staking"
3-
version = "0.9.0-alpha2"
3+
version = "0.9.0-alpha3"
44
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
55
edition = "2018"
66

packages/schema/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cosmwasm-schema"
3-
version = "0.9.0-alpha2"
3+
version = "0.9.0-alpha3"
44
authors = ["Simon Warta <webmaster128@users.noreply.github.com>", "Ethan Frey <ethanfrey@users.noreply.github.com>"]
55
edition = "2018"
66
description = "A dev-dependency for CosmWasm contracts to generate JSON Schema files."

packages/std/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cosmwasm-std"
3-
version = "0.9.0-alpha2"
3+
version = "0.9.0-alpha3"
44
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
55
edition = "2018"
66
description = "Standard library for Wasm based smart contracts on Cosmos blockchains"

packages/storage/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cosmwasm-storage"
3-
version = "0.9.0-alpha2"
3+
version = "0.9.0-alpha3"
44
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
55
edition = "2018"
66
description = "CosmWasm library with useful helpers for Storage patterns"
@@ -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 = { path = "../std", version = "0.9.0-alpha2" }
22+
cosmwasm-std = { path = "../std", version = "0.9.0-alpha3" }
2323
serde = { version = "1.0.103", default-features = false, features = ["derive", "alloc"] }
2424

2525
[dev-dependencies]

packages/vm/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cosmwasm-vm"
3-
version = "0.9.0-alpha2"
3+
version = "0.9.0-alpha3"
44
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
55
edition = "2018"
66
description = "VM bindings to run cosmwams contracts"
@@ -31,7 +31,7 @@ staking = ["cosmwasm-std/staking"]
3131

3232
[dependencies]
3333
# Uses the path when built locally; uses the given version from crates.io when published
34-
cosmwasm-std = { path = "../std", version = "0.9.0-alpha2" }
34+
cosmwasm-std = { path = "../std", version = "0.9.0-alpha3" }
3535
serde_json = "1.0"
3636
wasmer-runtime-core = "0.17"
3737
wasmer-middleware-common = "0.17"

0 commit comments

Comments
 (0)