From 1db4b7387953538d7a0123d3732385981d18db57 Mon Sep 17 00:00:00 2001 From: Serkan Reis Date: Tue, 8 Nov 2022 15:15:17 +0300 Subject: [PATCH] Update contract versions as 0.14.2 (#35) --- Cargo.lock | 12 ++++++------ README.md | 10 +++++----- contracts/cw20-atomic-swap/Cargo.toml | 2 +- contracts/cw20-bonding/Cargo.toml | 2 +- contracts/cw20-escrow/Cargo.toml | 2 +- contracts/cw20-merkle-airdrop/Cargo.toml | 2 +- contracts/cw20-staking/Cargo.toml | 2 +- contracts/cw20-streams/Cargo.toml | 2 +- 8 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4ea495df..46ccd620 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -325,7 +325,7 @@ dependencies = [ [[package]] name = "cw20-atomic-swap" -version = "0.14.1" +version = "0.14.2" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -358,7 +358,7 @@ dependencies = [ [[package]] name = "cw20-bonding" -version = "0.14.1" +version = "0.14.2" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -375,7 +375,7 @@ dependencies = [ [[package]] name = "cw20-escrow" -version = "0.14.1" +version = "0.14.2" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -390,7 +390,7 @@ dependencies = [ [[package]] name = "cw20-merkle-airdrop" -version = "0.14.1" +version = "0.14.2" dependencies = [ "bech32", "cosmwasm-schema", @@ -411,7 +411,7 @@ dependencies = [ [[package]] name = "cw20-staking" -version = "0.14.1" +version = "0.14.2" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -426,7 +426,7 @@ dependencies = [ [[package]] name = "cw20-streams" -version = "0.14.1" +version = "0.14.2" dependencies = [ "cosmwasm-schema", "cosmwasm-std", diff --git a/README.md b/README.md index a6b817e3..1ed0f311 100644 --- a/README.md +++ b/README.md @@ -16,11 +16,11 @@ contract you have written that you would like to share with the community. | Contracts | Download | Docs | | ----------------------- |-------------------------------------------------------------------------------------------------------------| -------------------------------------------------------------------------| -| cw20-atomic-swap | [Release v0.14.1](https://github.com/CosmWasm/cw-tokens/releases/download/v0.14.1/cw20_atomic_swap.wasm) | [![Docs](https://docs.rs/cw20-atomic-swap/badge.svg)](https://docs.rs/cw20-atomic-swap) | -| cw20-bonding | [Release v0.14.1](https://github.com/CosmWasm/cw-tokens/releases/download/v0.14.1/cw20_bonding.wasm) | [![Docs](https://docs.rs/cw20-bonding/badge.svg)](https://docs.rs/cw20-bonding) | -| cw20-escrow | [Release v0.14.1](https://github.com/CosmWasm/cw-tokens/releases/download/v0.14.1/cw20_escrow.wasm) | [![Docs](https://docs.rs/cw20-escrow/badge.svg)](https://docs.rs/cw20-escrow) | -| cw20-staking | [Release v0.14.1](https://github.com/CosmWasm/cw-tokens/releases/download/v0.14.1/cw20_staking.wasm) | [![Docs](https://docs.rs/cw20-staking/badge.svg)](https://docs.rs/cw20-staking) | -| cw20-merkle-airdrop | [Release v0.14.1](https://github.com/CosmWasm/cw-tokens/releases/download/v0.14.1/cw20_merkle_airdrop.wasm) | [![Docs](https://docs.rs/cw20-merkle-airdrop/badge.svg)](https://docs.rs/cw20-merkle-airdrop) | +| cw20-atomic-swap | [Release v0.14.2](https://github.com/CosmWasm/cw-tokens/releases/download/v0.14.2/cw20_atomic_swap.wasm) | [![Docs](https://docs.rs/cw20-atomic-swap/badge.svg)](https://docs.rs/cw20-atomic-swap) | +| cw20-bonding | [Release v0.14.2](https://github.com/CosmWasm/cw-tokens/releases/download/v0.14.2/cw20_bonding.wasm) | [![Docs](https://docs.rs/cw20-bonding/badge.svg)](https://docs.rs/cw20-bonding) | +| cw20-escrow | [Release v0.14.2](https://github.com/CosmWasm/cw-tokens/releases/download/v0.14.2/cw20_escrow.wasm) | [![Docs](https://docs.rs/cw20-escrow/badge.svg)](https://docs.rs/cw20-escrow) | +| cw20-staking | [Release v0.14.2](https://github.com/CosmWasm/cw-tokens/releases/download/v0.14.2/cw20_staking.wasm) | [![Docs](https://docs.rs/cw20-staking/badge.svg)](https://docs.rs/cw20-staking) | +| cw20-merkle-airdrop | [Release v0.14.2](https://github.com/CosmWasm/cw-tokens/releases/download/v0.14.2/cw20_merkle_airdrop.wasm) | [![Docs](https://docs.rs/cw20-merkle-airdrop/badge.svg)](https://docs.rs/cw20-merkle-airdrop) | **Warning** None of these contracts have been audited and no liability is assumed for the use of this code. They are provided to turbo-start diff --git a/contracts/cw20-atomic-swap/Cargo.toml b/contracts/cw20-atomic-swap/Cargo.toml index 98d8739e..1e5f87e7 100644 --- a/contracts/cw20-atomic-swap/Cargo.toml +++ b/contracts/cw20-atomic-swap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cw20-atomic-swap" -version = "0.14.1" +version = "0.14.2" authors = ["Mauro Lacy "] edition = "2018" description = "Implementation of Atomic Swaps" diff --git a/contracts/cw20-bonding/Cargo.toml b/contracts/cw20-bonding/Cargo.toml index 91977f0c..1e5a439a 100644 --- a/contracts/cw20-bonding/Cargo.toml +++ b/contracts/cw20-bonding/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cw20-bonding" -version = "0.14.1" +version = "0.14.2" authors = ["Ethan Frey "] edition = "2018" description = "Implement basic bonding curve to issue cw20 tokens" diff --git a/contracts/cw20-escrow/Cargo.toml b/contracts/cw20-escrow/Cargo.toml index f1aed5f1..5907bcfe 100644 --- a/contracts/cw20-escrow/Cargo.toml +++ b/contracts/cw20-escrow/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cw20-escrow" -version = "0.14.1" +version = "0.14.2" authors = ["Ethan Frey "] edition = "2018" description = "Implementation of an escrow that accepts CosmWasm-20 tokens as well as native tokens" diff --git a/contracts/cw20-merkle-airdrop/Cargo.toml b/contracts/cw20-merkle-airdrop/Cargo.toml index c27befee..6402a18f 100644 --- a/contracts/cw20-merkle-airdrop/Cargo.toml +++ b/contracts/cw20-merkle-airdrop/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cw20-merkle-airdrop" -version = "0.14.1" +version = "0.14.2" authors = ["Orkun Kulce ", "Terraform Labs, PTE."] edition = "2018" description = "An Airdrop contract for allowing users to claim rewards with Merkle Tree based proof" diff --git a/contracts/cw20-staking/Cargo.toml b/contracts/cw20-staking/Cargo.toml index af152447..31b2866a 100644 --- a/contracts/cw20-staking/Cargo.toml +++ b/contracts/cw20-staking/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cw20-staking" -version = "0.14.1" +version = "0.14.2" authors = ["Ethan Frey "] edition = "2018" description = "Implement simple staking derivatives as a cw20 token" diff --git a/contracts/cw20-streams/Cargo.toml b/contracts/cw20-streams/Cargo.toml index c6470c8a..908dd99c 100644 --- a/contracts/cw20-streams/Cargo.toml +++ b/contracts/cw20-streams/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cw20-streams" -version = "0.14.1" +version = "0.14.2" authors = ["Vernon Johnson "] edition = "2018"