-
Notifications
You must be signed in to change notification settings - Fork 351
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# CHANGELOG | ||
|
||
## 0.12.2 (unreleased) | ||
## 0.12.2 (2020-12-14) | ||
|
||
**cosmwasm-std** | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "burner" | ||
version = "0.12.1" | ||
version = "0.12.2" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
publish = false | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "hackatom" | ||
version = "0.12.1" | ||
version = "0.12.2" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
publish = false | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "queue" | ||
version = "0.12.1" | ||
version = "0.12.2" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
publish = false | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "reflect" | ||
version = "0.12.1" | ||
version = "0.12.2" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
publish = false | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "staking" | ||
version = "0.12.1" | ||
version = "0.12.2" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
publish = false | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cosmwasm-schema" | ||
version = "0.12.1" | ||
version = "0.12.2" | ||
authors = ["Simon Warta <[email protected]>", "Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "A dev-dependency for CosmWasm contracts to generate JSON Schema files." | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cosmwasm-std" | ||
version = "0.12.1" | ||
version = "0.12.2" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Standard library for Wasm based smart contracts on Cosmos blockchains" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cosmwasm-storage" | ||
version = "0.12.1" | ||
version = "0.12.2" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "CosmWasm library with useful helpers for Storage patterns" | ||
|
@@ -19,5 +19,5 @@ iterator = ["cosmwasm-std/iterator"] | |
|
||
[dependencies] | ||
# Uses the path when built locally; uses the given version from crates.io when published | ||
cosmwasm-std = { path = "../std", version = "0.12.1" } | ||
cosmwasm-std = { path = "../std", version = "0.12.2" } | ||
serde = { version = "1.0.103", default-features = false, features = ["derive", "alloc"] } |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cosmwasm-vm" | ||
version = "0.12.1" | ||
version = "0.12.2" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "VM bindings to run cosmwams contracts" | ||
|
@@ -32,7 +32,7 @@ staking = ["cosmwasm-std/staking"] | |
[dependencies] | ||
clru = "0.2.0" | ||
# Uses the path when built locally; uses the given version from crates.io when published | ||
cosmwasm-std = { path = "../std", version = "0.12.1" } | ||
cosmwasm-std = { path = "../std", version = "0.12.2" } | ||
serde_json = "1.0" | ||
wasmer-runtime-core = "=0.17.0" | ||
wasmer-middleware-common = "=0.17.0" | ||
|