Skip to content

Commit

Permalink
bump cw-plus to 2.0.0-rc.0
Browse files Browse the repository at this point in the history
  • Loading branch information
uint committed Mar 20, 2024
1 parent 1cc648d commit bac1a98
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 34 deletions.
44 changes: 22 additions & 22 deletions Cargo.lock

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

18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ members = ["packages/*", "contracts/*"]
resolver = "2"

[workspace.package]
version = "1.1.2"
version = "2.0.0-rc.0"

[workspace.dependencies]
cosmwasm-schema = "2.0.0"
Expand All @@ -20,18 +20,18 @@ semver = "1"
serde = { version = "1.0.188", default-features = false, features = ["derive"] }
thiserror = "1.0.4"

cw1 = { path = "packages/cw1", version = "1.1.2" }
cw1-whitelist = { path = "contracts/cw1-whitelist", version = "1.1.2", features = [
cw1 = { path = "packages/cw1", version = "2.0.0-rc.0" }
cw1-whitelist = { path = "contracts/cw1-whitelist", version = "2.0.0-rc.0", features = [
"library",
] }
cw20 = { path = "packages/cw20", version = "1.1.2" }
cw20-base = { path = "contracts/cw20-base", version = "1.1.2", features = ["library"] }
cw3 = { path = "packages/cw3", version = "1.1.2" }
cw3-fixed-multisig = { path = "contracts/cw3-fixed-multisig", version = "1.1.2", features = [
cw20 = { path = "packages/cw20", version = "2.0.0-rc.0" }
cw20-base = { path = "contracts/cw20-base", version = "2.0.0-rc.0", features = ["library"] }
cw3 = { path = "packages/cw3", version = "2.0.0-rc.0" }
cw3-fixed-multisig = { path = "contracts/cw3-fixed-multisig", version = "2.0.0-rc.0", features = [
"library",
] }
cw4 = { path = "packages/cw4", version = "1.1.2" }
cw4-group = { path = "contracts/cw4-group", version = "1.1.2" }
cw4 = { path = "packages/cw4", version = "2.0.0-rc.0" }
cw4-group = { path = "contracts/cw4-group", version = "2.0.0-rc.0" }
easy-addr = { path = "packages/easy-addr" }

[profile.release.package.cw1-subkeys]
Expand Down
2 changes: 1 addition & 1 deletion contracts/cw1-subkeys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw1-subkeys"
version = "1.1.2"
version.workspace = true
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2021"
description = "Implement subkeys for authorizing native tokens as a cw1 proxy contract"
Expand Down
2 changes: 1 addition & 1 deletion contracts/cw1-whitelist/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw1-whitelist"
version = "1.1.2"
version.workspace = true
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2021"
description = "Implementation of an proxy contract using a whitelist"
Expand Down
2 changes: 1 addition & 1 deletion packages/cw1/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw1"
version = "1.1.2"
version.workspace = true
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2021"
description = "Definition and types for the CosmWasm-1 interface"
Expand Down

0 comments on commit bac1a98

Please sign in to comment.