Skip to content

Commit

Permalink
Release v0.14.0 (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
MightOfOaks committed Oct 22, 2022
1 parent 6acf994 commit c2a6af4
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 20 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

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

16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ You are more than welcome to [create a PR](https://github.com/CosmWasm/cw-tokens
contract you have written that you would like to share with the community.


| Contracts | Download | Docs |
| ----------------------- | ---------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------|
| cw20-atomic-swap | [Release v0.11.2](https://github.com/CosmWasm/cw-tokens/releases/download/v0.11.2/cw20_atomic_swap.wasm) | [![Docs](https://docs.rs/cw20-atomic-swap/badge.svg)](https://docs.rs/cw20-atomic-swap) |
| cw20-bonding | [Release v0.11.2](https://github.com/CosmWasm/cw-tokens/releases/download/v0.11.2/cw20_bonding.wasm) | [![Docs](https://docs.rs/cw20-bonding/badge.svg)](https://docs.rs/cw20-bonding) |
| cw20-escrow | [Release v0.11.2](https://github.com/CosmWasm/cw-tokens/releases/download/v0.11.2/cw20_escrow.wasm) | [![Docs](https://docs.rs/cw20-escrow/badge.svg)](https://docs.rs/cw20-escrow) |
| cw20-staking | [Release v0.11.2](https://github.com/CosmWasm/cw-tokens/releases/download/v0.11.2/cw20_staking.wasm) | [![Docs](https://docs.rs/cw20-staking/badge.svg)](https://docs.rs/cw20-staking) |
| cw20-merkle-airdrop | [Release v0.11.2](https://github.com/CosmWasm/cw-tokens/releases/download/v0.11.2/cw20_merkle_airdrop.wasm) | [![Docs](https://docs.rs/cw20-merkle-airdrop/badge.svg)](https://docs.rs/cw20-merkle-airdrop) |
| Contracts | Download | Docs |
| ----------------------- |-------------------------------------------------------------------------------------------------------------| -------------------------------------------------------------------------|
| cw20-atomic-swap | [Release v0.14.0](https://github.com/CosmWasm/cw-tokens/releases/download/v0.14.0/cw20_atomic_swap.wasm) | [![Docs](https://docs.rs/cw20-atomic-swap/badge.svg)](https://docs.rs/cw20-atomic-swap) |
| cw20-bonding | [Release v0.14.0](https://github.com/CosmWasm/cw-tokens/releases/download/v0.14.0/cw20_bonding.wasm) | [![Docs](https://docs.rs/cw20-bonding/badge.svg)](https://docs.rs/cw20-bonding) |
| cw20-escrow | [Release v0.14.0](https://github.com/CosmWasm/cw-tokens/releases/download/v0.14.0/cw20_escrow.wasm) | [![Docs](https://docs.rs/cw20-escrow/badge.svg)](https://docs.rs/cw20-escrow) |
| cw20-staking | [Release v0.14.0](https://github.com/CosmWasm/cw-tokens/releases/download/v0.14.0/cw20_staking.wasm) | [![Docs](https://docs.rs/cw20-staking/badge.svg)](https://docs.rs/cw20-staking) |
| cw20-merkle-airdrop | [Release v0.14.0](https://github.com/CosmWasm/cw-tokens/releases/download/v0.14.0/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
Expand Down Expand Up @@ -55,7 +55,7 @@ To compile all the contracts, run the following in the repo root:
docker run --rm -v "$(pwd)":/code \
--mount type=volume,source="$(basename "$(pwd)")_cache",target=/code/target \
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
cosmwasm/workspace-optimizer:0.12.4
cosmwasm/workspace-optimizer:0.12.8
```

This will compile all packages in the `contracts` directory and output the
Expand Down
2 changes: 1 addition & 1 deletion contracts/cw20-atomic-swap/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw20-atomic-swap"
version = "0.13.1"
version = "0.14.0"
authors = ["Mauro Lacy <maurolacy@users.noreply.github.com>"]
edition = "2018"
description = "Implementation of Atomic Swaps"
Expand Down
2 changes: 1 addition & 1 deletion contracts/cw20-bonding/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw20-bonding"
version = "0.13.1"
version = "0.14.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Implement basic bonding curve to issue cw20 tokens"
Expand Down
2 changes: 1 addition & 1 deletion contracts/cw20-escrow/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw20-escrow"
version = "0.13.1"
version = "0.14.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Implementation of an escrow that accepts CosmWasm-20 tokens as well as native tokens"
Expand Down
2 changes: 1 addition & 1 deletion contracts/cw20-merkle-airdrop/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw20-merkle-airdrop"
version = "0.13.1"
version = "0.14.0"
authors = ["Orkun Kulce <orkunkl@users.noreply.github.com>", "Terraform Labs, PTE."]
edition = "2018"
description = "An Airdrop contract for allowing users to claim rewards with Merkle Tree based proof"
Expand Down
2 changes: 1 addition & 1 deletion contracts/cw20-staking/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw20-staking"
version = "0.13.1"
version = "0.14.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Implement simple staking derivatives as a cw20 token"
Expand Down
2 changes: 1 addition & 1 deletion contracts/cw20-streams/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw20-streams"
version = "0.13.1"
version = "0.14.0"
authors = ["Vernon Johnson <vtj2105@columbia.edu>"]
edition = "2018"

Expand Down

0 comments on commit c2a6af4

Please sign in to comment.