Skip to content

Commit

Permalink
Merge pull request #106 from confio/release-0.6.1
Browse files Browse the repository at this point in the history
Release 0.6.1
  • Loading branch information
ueco-jb authored Feb 16, 2022
2 parents 98e96c0 + 30ce3b8 commit 4a7b7b1
Show file tree
Hide file tree
Showing 18 changed files with 137 additions and 125 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,19 @@

## [Unreleased](https://github.com/confio/poe-contracts/tree/HEAD)

[Full Changelog](https://github.com/confio/poe-contracts/compare/v0.6.0...HEAD)
[Full Changelog](https://github.com/confio/poe-contracts/compare/v0.6.1...HEAD)

## [v0.6.1](https://github.com/confio/poe-contracts/tree/v0.6.1) (2022-02-16)

[Full Changelog](https://github.com/confio/poe-contracts/compare/v0.6.0...v0.6.1)

**Closed issues:**

- Add API migration guide [\#70](https://github.com/confio/poe-contracts/issues/70)

**Merged pull requests:**

- Add `tg4-group` contract [\#105](https://github.com/confio/poe-contracts/pull/105) ([maurolacy](https://github.com/maurolacy))

## [v0.6.0](https://github.com/confio/poe-contracts/tree/v0.6.0) (2022-02-15)

Expand Down
32 changes: 16 additions & 16 deletions Cargo.lock

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

20 changes: 10 additions & 10 deletions contracts/tg4-engagement/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tg4-engagement"
version = "0.6.0"
version = "0.6.1"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "Simple TG4 implementation of group membership controlled by an admin"
Expand All @@ -20,21 +20,21 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cw-utils = "0.11.0"
cw2 = "0.11.0"
cw-controllers = "0.11.0"
cw-storage-plus = "0.11.0"
tg4 = { path = "../../packages/tg4", version = "0.6.0" }
tg-utils = { version = "0.6.0", path = "../../packages/utils" }
tg-bindings = { version = "0.6.0", path = "../../packages/bindings" }
cw-utils = "0.11.1"
cw2 = "0.11.1"
cw-controllers = "0.11.1"
cw-storage-plus = "0.11.1"
tg4 = { path = "../../packages/tg4", version = "0.6.1" }
tg-utils = { version = "0.6.1", path = "../../packages/utils" }
tg-bindings = { version = "0.6.1", path = "../../packages/bindings" }
cosmwasm-std = { version = "1.0.0-beta5" }
schemars = "0.8"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.21" }

[dev-dependencies]
cosmwasm-schema = { version = "1.0.0-beta5" }
cw-multi-test = { version = "0.11.0" }
tg-bindings-test = { version = "0.6.0", path = "../../packages/bindings-test" }
cw-multi-test = { version = "0.11.1" }
tg-bindings-test = { version = "0.6.1", path = "../../packages/bindings-test" }
derivative = "2"
anyhow = "1"
8 changes: 4 additions & 4 deletions contracts/tg4-group/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tg4-group"
version = "0.6.0"
version = "0.6.1"
authors = ["Mauro Lacy <[email protected]>"]
edition = "2018"
description = "Simple tg4 implementation of group membership controlled by admin"
Expand Down Expand Up @@ -28,9 +28,9 @@ library = []
[dependencies]
cw-utils = "0.11.1"
cw2 = "0.11.1"
tg-bindings = { version = "0.6.0", path = "../../packages/bindings" }
tg-utils = { version = "0.6.0", path = "../../packages/utils" }
tg4 = { version = "0.6.0", path = "../../packages/tg4" }
tg-bindings = { version = "0.6.1", path = "../../packages/bindings" }
tg-utils = { version = "0.6.1", path = "../../packages/utils" }
tg4 = { version = "0.6.1", path = "../../packages/tg4" }
cw-controllers = "0.11.1"
cw-storage-plus = "0.11.1"
cosmwasm-std = { version = "1.0.0-beta5" }
Expand Down
22 changes: 11 additions & 11 deletions contracts/tg4-mixer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tg4-mixer"
version = "0.6.0"
version = "0.6.1"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "TG4 implementation that combines two different groups with a merge function"
Expand All @@ -23,13 +23,13 @@ library = []
benches = [ "cosmwasm-vm" ]

[dependencies]
cw-utils = "0.11.0"
cw2 = "0.11.0"
cw20 = "0.11.0"
cw-storage-plus = "0.11.0"
tg4 = { path = "../../packages/tg4", version = "0.6.0" }
tg-utils = { path = "../../packages/utils", version = "0.6.0" }
tg-bindings = { path = "../../packages/bindings", version = "0.6.0" }
cw-utils = "0.11.1"
cw2 = "0.11.1"
cw20 = "0.11.1"
cw-storage-plus = "0.11.1"
tg4 = { path = "../../packages/tg4", version = "0.6.1" }
tg-utils = { path = "../../packages/utils", version = "0.6.1" }
tg-bindings = { path = "../../packages/bindings", version = "0.6.1" }
cosmwasm-std = "1.0.0-beta5"
integer-sqrt = "0.1.5"
schemars = "0.8"
Expand All @@ -42,12 +42,12 @@ rust_decimal_macros = { version = "1.16", default-features = false }
cosmwasm-vm = { version = "1.0.0-beta5", optional = true }

[dev-dependencies]
cw-multi-test = { version = "0.11.0" }
cw-multi-test = { version = "0.11.1" }
cosmwasm-schema = { version = "1.0.0-beta5" }
# version's workaround for issue with cyclic dependencies during cargo publish
# https://github.com/rust-lang/cargo/issues/4242
tg4-engagement = { path = "../tg4-engagement", version = "0.6.0", features = ["library"] }
tg4-stake = { path = "../tg4-stake", version = "0.6.0", features = ["library"] }
tg4-engagement = { path = "../tg4-engagement", version = "0.6.1", features = ["library"] }
tg4-stake = { path = "../tg4-stake", version = "0.6.1", features = ["library"] }

[[bench]]
name = "main"
Expand Down
16 changes: 8 additions & 8 deletions contracts/tg4-stake/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tg4-stake"
version = "0.6.0"
version = "0.6.1"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "TG4 implementation of group based on staked tokens"
Expand All @@ -20,13 +20,13 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cw-utils = "0.11.0"
cw2 = "0.11.0"
cw-controllers = "0.11.0"
cw-storage-plus = "0.11.0"
tg4 = { path = "../../packages/tg4", version = "0.6.0" }
tg-utils = { path = "../../packages/utils", version = "0.6.0" }
tg-bindings = { path = "../../packages/bindings", version = "0.6.0" }
cw-utils = "0.11.1"
cw2 = "0.11.1"
cw-controllers = "0.11.1"
cw-storage-plus = "0.11.1"
tg4 = { path = "../../packages/tg4", version = "0.6.1" }
tg-utils = { path = "../../packages/utils", version = "0.6.1" }
tg-bindings = { path = "../../packages/bindings", version = "0.6.1" }
cosmwasm-std = "1.0.0-beta5"
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
Expand Down
20 changes: 10 additions & 10 deletions contracts/tgrade-community-pool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tgrade-community-pool"
version = "0.6.0"
version = "0.6.1"
authors = ["Bartłomiej Kuras <[email protected]>"]
edition = "2018"
description = "Implementing tgrade-community-pool voting contract"
Expand All @@ -17,20 +17,20 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cw2 = "0.11.0"
tg3 = { path = "../../packages/tg3", version = "0.6.0" }
cw2 = "0.11.1"
tg3 = { path = "../../packages/tg3", version = "0.6.1" }
cosmwasm-std = "1.0.0-beta5"
schemars = "0.8.1"
serde = { version = "1", default-features = false, features = ["derive"] }
tg-bindings = { path = "../../packages/bindings", version = "0.6.0" }
tg-utils = { path = "../../packages/utils", version = "0.6.0" }
tg-voting-contract = { version = "0.6.0", path = "../../packages/voting-contract" }
tg4-engagement = { path = "../tg4-engagement", version = "0.6.0", features = ["library"] }
tg-bindings = { path = "../../packages/bindings", version = "0.6.1" }
tg-utils = { path = "../../packages/utils", version = "0.6.1" }
tg-voting-contract = { version = "0.6.1", path = "../../packages/voting-contract" }
tg4-engagement = { path = "../tg4-engagement", version = "0.6.1", features = ["library"] }
thiserror = "1"

[dev-dependencies]
anyhow = "1"
cosmwasm-schema = "1.0.0-beta5"
cw-multi-test = "0.11.0"
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.6.0" }
tg4 = { path = "../../packages/tg4", version = "0.6.0" }
cw-multi-test = "0.11.1"
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.6.1" }
tg4 = { path = "../../packages/tg4", version = "0.6.1" }
6 changes: 3 additions & 3 deletions contracts/tgrade-gov-reflect/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tgrade-gov-reflect"
version = "0.6.0"
version = "0.6.1"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
repository = "https://github.com/confio/poe-contracts"
Expand All @@ -24,8 +24,8 @@ backtraces = ["cosmwasm-std/backtraces"]

[dependencies]
cosmwasm-std = "1.0.0-beta5"
cw-storage-plus = "0.11.0"
tg-bindings = { version = "0.6.0", path = "../../packages/bindings" }
cw-storage-plus = "0.11.1"
tg-bindings = { version = "0.6.1", path = "../../packages/bindings" }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = "1"
Expand Down
26 changes: 13 additions & 13 deletions contracts/tgrade-validator-voting/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tgrade-validator-voting"
version = "0.6.0"
version = "0.6.1"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "Implementing tgrade-validator-voting"
Expand All @@ -17,23 +17,23 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cw2 = "0.11.0"
tg3 = { path = "../../packages/tg3", version = "0.6.0" }
cw2 = "0.11.1"
tg3 = { path = "../../packages/tg3", version = "0.6.1" }
cosmwasm-std = "1.0.0-beta5"
schemars = "0.8.1"
serde = { version = "1", default-features = false, features = ["derive"] }
tg-bindings = { path = "../../packages/bindings", version = "0.6.0" }
tg-utils = { path = "../../packages/utils", version = "0.6.0" }
tg-voting-contract = { version = "0.6.0", path = "../../packages/voting-contract" }
tg-bindings = { path = "../../packages/bindings", version = "0.6.1" }
tg-utils = { path = "../../packages/utils", version = "0.6.1" }
tg-voting-contract = { version = "0.6.1", path = "../../packages/voting-contract" }
thiserror = "1"

[dev-dependencies]
anyhow = "1"
cosmwasm-schema = "1.0.0-beta5"
cw-multi-test = "0.11.0"
cw-storage-plus = "0.11.0"
tg-bindings-test = { version = "0.6.0", path = "../../packages/bindings-test" }
tg-utils = { version = "0.6.0", path = "../../packages/utils" }
tg-voting-contract = { version = "0.6.0", path = "../../packages/voting-contract" }
tg4 = { path = "../../packages/tg4", version = "0.6.0" }
tg4-engagement = { path = "../tg4-engagement", version = "0.6.0", features = ["library"] }
cw-multi-test = "0.11.1"
cw-storage-plus = "0.11.1"
tg-bindings-test = { version = "0.6.1", path = "../../packages/bindings-test" }
tg-utils = { version = "0.6.1", path = "../../packages/utils" }
tg-voting-contract = { version = "0.6.1", path = "../../packages/voting-contract" }
tg4 = { path = "../../packages/tg4", version = "0.6.1" }
tg4-engagement = { path = "../tg4-engagement", version = "0.6.1", features = ["library"] }
Loading

0 comments on commit 4a7b7b1

Please sign in to comment.