Skip to content

Commit

Permalink
Set version: 0.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
webmaster128 committed Jan 12, 2021
1 parent 93d5e35 commit 02c9b7b
Show file tree
Hide file tree
Showing 13 changed files with 38 additions and 37 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CHANGELOG

## 0.13.1 (unreleased)
## 0.13.1 (2020-01-12)

**cosmwasm-std**

Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

| Crate | Download | Docs |
| ---------------- | ----------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- |
| cosmwasm-derive | [![cosmwasm-derive on crates.io](https://img.shields.io/crates/v/cosmwasm-derive.svg)](https://crates.io/crates/cosmwasm-derive) | [![Docs](https://docs.rs/cosmwasm-derive/badge.svg)](https://docs.rs/cosmwasm-derive) |
| cosmwasm-schema | [![cosmwasm-schema on crates.io](https://img.shields.io/crates/v/cosmwasm-schema.svg)](https://crates.io/crates/cosmwasm-schema) | [![Docs](https://docs.rs/cosmwasm-schema/badge.svg)](https://docs.rs/cosmwasm-schema) |
| cosmwasm-std | [![cosmwasm-std on crates.io](https://img.shields.io/crates/v/cosmwasm-std.svg)](https://crates.io/crates/cosmwasm-std) | [![Docs](https://docs.rs/cosmwasm-std/badge.svg)](https://docs.rs/cosmwasm-std) |
| cosmwasm-storage | [![cosmwasm-storage on crates.io](https://img.shields.io/crates/v/cosmwasm-storage.svg)](https://crates.io/crates/cosmwasm-storage) | [![Docs](https://docs.rs/cosmwasm-storage/badge.svg)](https://docs.rs/cosmwasm-storage) |
Expand Down
8 changes: 4 additions & 4 deletions contracts/burner/Cargo.lock

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

10 changes: 5 additions & 5 deletions contracts/hackatom/Cargo.lock

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

8 changes: 4 additions & 4 deletions contracts/queue/Cargo.lock

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

10 changes: 5 additions & 5 deletions contracts/reflect/Cargo.lock

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

10 changes: 5 additions & 5 deletions contracts/staking/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/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cosmwasm-derive"
version = "0.13.0"
version = "0.13.1"
authors = ["Simon Warta <[email protected]>"]
edition = "2018"
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/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cosmwasm-schema"
version = "0.13.0"
version = "0.13.1"
authors = ["Simon Warta <[email protected]>", "Ethan Frey <[email protected]>"]
edition = "2018"
description = "A dev-dependency for CosmWasm contracts to generate JSON Schema files."
Expand Down
4 changes: 2 additions & 2 deletions packages/std/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cosmwasm-std"
version = "0.13.0"
version = "0.13.1"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "Standard library for Wasm based smart contracts on Cosmos blockchains"
Expand Down Expand Up @@ -30,7 +30,7 @@ backtraces = []

[dependencies]
base64 = "0.13.0"
cosmwasm-derive = { path = "../derive", version = "0.13.0" }
cosmwasm-derive = { path = "../derive", version = "0.13.1" }
serde-json-wasm = { version = "0.2.1" }
schemars = "0.7"
serde = { version = "1.0.103", default-features = false, features = ["derive", "alloc"] }
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 = "cosmwasm-storage"
version = "0.13.0"
version = "0.13.1"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "CosmWasm library with useful helpers for Storage patterns"
Expand All @@ -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.13.0" }
cosmwasm-std = { path = "../std", version = "0.13.1" }
serde = { version = "1.0.103", default-features = false, features = ["derive", "alloc"] }
4 changes: 2 additions & 2 deletions packages/vm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cosmwasm-vm"
version = "0.13.0"
version = "0.13.1"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "VM bindings to run cosmwams contracts"
Expand Down Expand Up @@ -34,7 +34,7 @@ bench = false
[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.13.0" }
cosmwasm-std = { path = "../std", version = "0.13.1" }
hex = "0.4"
parity-wasm = "0.42"
schemars = "0.7"
Expand Down

0 comments on commit 02c9b7b

Please sign in to comment.