-
Notifications
You must be signed in to change notification settings - Fork 361
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b80748d
commit 5e9702a
Showing
14 changed files
with
34 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# CHANGELOG | ||
|
||
## 0.8.1 (not yet released) | ||
## 0.8.1 (2020-06-08) | ||
|
||
**cosmwasm-std** | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "hackatom" | ||
version = "0.8.0" | ||
version = "0.8.1" | ||
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.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "queue" | ||
version = "0.8.0" | ||
version = "0.8.1" | ||
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.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "reflect" | ||
version = "0.8.0" | ||
version = "0.8.1" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
publish = false | ||
edition = "2018" | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "staking" | ||
version = "0.8.0" | ||
version = "0.8.1" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cosmwasm-schema" | ||
version = "0.8.0" | ||
version = "0.8.1" | ||
authors = ["Simon Warta <[email protected]>", "Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "A dev-dependency for CosmWasm contracts to generate JSON Schema files." | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cosmwasm-std" | ||
version = "0.8.0" | ||
version = "0.8.1" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Standard library for Wasm based smart contracts on Cosmos blockchains" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cosmwasm-storage" | ||
version = "0.8.0" | ||
version = "0.8.1" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "CosmWasm library with useful helpers for Storage patterns" | ||
|
@@ -19,7 +19,7 @@ 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.8.0" } | ||
cosmwasm-std = { path = "../std", version = "0.8.1" } | ||
serde = { version = "1.0.103", default-features = false, features = ["derive", "alloc"] } | ||
|
||
[dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cosmwasm-vm" | ||
version = "0.8.0" | ||
version = "0.8.1" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "VM bindings to run cosmwams contracts" | ||
|
@@ -31,7 +31,7 @@ staking = ["cosmwasm-std/staking"] | |
|
||
[dependencies] | ||
# Uses the path when built locally; uses the given version from crates.io when published | ||
cosmwasm-std = { path = "../std", version = "0.8.0" } | ||
cosmwasm-std = { path = "../std", version = "0.8.1" } | ||
serde_json = "1.0" | ||
wasmer-runtime-core = "0.17" | ||
wasmer-middleware-common = "0.17" | ||
|