Skip to content

Commit

Permalink
Merge pull request #837 from CosmWasm/circleci-update
Browse files Browse the repository at this point in the history
Update CI to Rust 1.64
  • Loading branch information
uint committed Oct 19, 2022
2 parents bbce4a6 + 6c0174b commit f5acb4f
Show file tree
Hide file tree
Showing 15 changed files with 71 additions and 71 deletions.
114 changes: 57 additions & 57 deletions .circleci/config.yml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion contracts/cw1-subkeys/Cargo.toml
Expand Up @@ -2,7 +2,7 @@
name = "cw1-subkeys"
version = "0.16.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
edition = "2021"
description = "Implement subkeys for authorizing native tokens as a cw1 proxy contract"
license = "Apache-2.0"
repository = "https://github.com/CosmWasm/cw-plus"
Expand Down
2 changes: 1 addition & 1 deletion contracts/cw1-whitelist/Cargo.toml
Expand Up @@ -2,7 +2,7 @@
name = "cw1-whitelist"
version = "0.16.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
edition = "2021"
description = "Implementation of an proxy contract using a whitelist"
license = "Apache-2.0"
repository = "https://github.com/CosmWasm/cw-plus"
Expand Down
2 changes: 1 addition & 1 deletion contracts/cw20-base/Cargo.toml
Expand Up @@ -2,7 +2,7 @@
name = "cw20-base"
version = "0.16.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
edition = "2021"
description = "Basic implementation of a CosmWasm-20 compliant token"
license = "Apache-2.0"
repository = "https://github.com/CosmWasm/cw-plus"
Expand Down
2 changes: 1 addition & 1 deletion contracts/cw20-ics20/Cargo.toml
Expand Up @@ -2,7 +2,7 @@
name = "cw20-ics20"
version = "0.16.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
edition = "2021"
description = "IBC Enabled contracts that receives CW20 tokens and sends them over ICS20 to a remote chain"
license = "Apache-2.0"
repository = "https://github.com/CosmWasm/cw-plus"
Expand Down
2 changes: 1 addition & 1 deletion contracts/cw3-fixed-multisig/Cargo.toml
Expand Up @@ -2,7 +2,7 @@
name = "cw3-fixed-multisig"
version = "0.16.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
edition = "2021"
description = "Implementing cw3 with an fixed group multisig"
license = "Apache-2.0"
repository = "https://github.com/CosmWasm/cw-plus"
Expand Down
2 changes: 1 addition & 1 deletion contracts/cw3-flex-multisig/Cargo.toml
Expand Up @@ -2,7 +2,7 @@
name = "cw3-flex-multisig"
version = "0.16.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
edition = "2021"
description = "Implementing cw3 with multiple voting patterns and dynamic groups"
license = "Apache-2.0"
repository = "https://github.com/CosmWasm/cw-plus"
Expand Down
2 changes: 1 addition & 1 deletion contracts/cw4-group/Cargo.toml
Expand Up @@ -2,7 +2,7 @@
name = "cw4-group"
version = "0.16.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
edition = "2021"
description = "Simple cw4 implementation of group membership controlled by admin "
license = "Apache-2.0"
repository = "https://github.com/CosmWasm/cw-plus"
Expand Down
2 changes: 1 addition & 1 deletion contracts/cw4-stake/Cargo.toml
Expand Up @@ -2,7 +2,7 @@
name = "cw4-stake"
version = "0.16.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
edition = "2021"
description = "CW4 implementation of group based on staked tokens"
license = "Apache-2.0"
repository = "https://github.com/CosmWasm/cw-plus"
Expand Down
2 changes: 1 addition & 1 deletion packages/controllers/Cargo.toml
Expand Up @@ -2,7 +2,7 @@
name = "cw-controllers"
version = "0.16.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
edition = "2021"
description = "Common controllers we can reuse in many contracts"
license = "Apache-2.0"
repository = "https://github.com/CosmWasm/cw-plus"
Expand Down
2 changes: 1 addition & 1 deletion packages/cw1/Cargo.toml
Expand Up @@ -2,7 +2,7 @@
name = "cw1"
version = "0.16.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
edition = "2021"
description = "Definition and types for the CosmWasm-1 interface"
license = "Apache-2.0"
repository = "https://github.com/CosmWasm/cw-plus"
Expand Down
2 changes: 1 addition & 1 deletion packages/cw2/Cargo.toml
Expand Up @@ -2,7 +2,7 @@
name = "cw2"
version = "0.16.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
edition = "2021"
description = "Definition and types for the CosmWasm-2 interface"
license = "Apache-2.0"
repository = "https://github.com/CosmWasm/cw-plus"
Expand Down
2 changes: 1 addition & 1 deletion packages/cw20/Cargo.toml
Expand Up @@ -2,7 +2,7 @@
name = "cw20"
version = "0.16.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
edition = "2021"
description = "Definition and types for the CosmWasm-20 interface"
license = "Apache-2.0"
repository = "https://github.com/CosmWasm/cw-plus"
Expand Down
2 changes: 1 addition & 1 deletion packages/cw3/Cargo.toml
Expand Up @@ -2,7 +2,7 @@
name = "cw3"
version = "0.16.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
edition = "2021"
description = "CosmWasm-3 Interface: On-Chain MultiSig/Voting contracts"
license = "Apache-2.0"
repository = "https://github.com/CosmWasm/cw-plus"
Expand Down
2 changes: 1 addition & 1 deletion packages/cw4/Cargo.toml
Expand Up @@ -2,7 +2,7 @@
name = "cw4"
version = "0.16.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
edition = "2021"
description = "CosmWasm-4 Interface: Groups Members"
license = "Apache-2.0"
repository = "https://github.com/CosmWasm/cw-plus"
Expand Down

0 comments on commit f5acb4f

Please sign in to comment.