Skip to content

Commit

Permalink
Merge pull request #153 from confio/release-0.11.0
Browse files Browse the repository at this point in the history
Release 0.11.0
  • Loading branch information
maurolacy committed Jun 10, 2022
2 parents 14f9563 + ce04ebc commit 62ab94f
Show file tree
Hide file tree
Showing 18 changed files with 108 additions and 86 deletions.
24 changes: 23 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,29 @@

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

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

## [v0.11.0](https://github.com/confio/poe-contracts/tree/v0.11.0) (2022-06-10)

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

**Breaking changes:**

- Rename rewards to points in mixer [\#151](https://github.com/confio/poe-contracts/pull/151) ([maurolacy](https://github.com/maurolacy))
- Remove denom from the `TotalPoints` query [\#150](https://github.com/confio/poe-contracts/pull/150) ([maurolacy](https://github.com/maurolacy))

**Fixed bugs:**

- \[tg4-stake\] TotalPoints query shouldn't return denom [\#147](https://github.com/confio/poe-contracts/issues/147)
- valset: errors with "VerifyValidators" enabled on startup block 0 [\#146](https://github.com/confio/poe-contracts/issues/146)

**Closed issues:**

- Create documentation for `voting-contract` [\#59](https://github.com/confio/poe-contracts/issues/59)

**Merged pull requests:**

- Mixer mixing fn benches [\#152](https://github.com/confio/poe-contracts/pull/152) ([maurolacy](https://github.com/maurolacy))

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

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.

10 changes: 5 additions & 5 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.10.0"
version = "0.11.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Simple TG4 implementation of group membership controlled by an admin"
Expand All @@ -25,9 +25,9 @@ cw-controllers = "0.13.4"
cw-storage-plus = "0.13.4"
cw-utils = "0.13.4"
cw2 = "0.13.4"
tg-utils = { version = "0.10.0", path = "../../packages/utils" }
tg-bindings = { version = "0.10.0", path = "../../packages/bindings" }
tg4 = { path = "../../packages/tg4", version = "0.10.0" }
tg-utils = { version = "0.11.0", path = "../../packages/utils" }
tg-bindings = { version = "0.11.0", path = "../../packages/bindings" }
tg4 = { path = "../../packages/tg4", version = "0.11.0" }
schemars = "0.8"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = "1.0.21"
Expand All @@ -37,4 +37,4 @@ anyhow = "1"
cosmwasm-schema = "1.0.0"
cw-multi-test = "0.13.4"
derivative = "2"
tg-bindings-test = { version = "0.10.0", path = "../../packages/bindings-test" }
tg-bindings-test = { version = "0.11.0", path = "../../packages/bindings-test" }
4 changes: 2 additions & 2 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.10.0"
version = "0.11.0"
authors = ["Mauro Lacy <mauro@confio.gmbh>"]
edition = "2018"
description = "Simple tg4 implementation of group membership controlled by admin"
Expand Down Expand Up @@ -34,7 +34,7 @@ cw-controllers = "0.13.4"
cw-storage-plus = "0.13.4"
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
tg4 = { version = "0.10.0", path = "../../packages/tg4" }
tg4 = { version = "0.11.0", path = "../../packages/tg4" }
thiserror = { version = "1.0.23" }

[dev-dependencies]
Expand Down
12 changes: 6 additions & 6 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.10.0"
version = "0.11.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "TG4 implementation that combines two different groups with a merge function"
Expand Down Expand Up @@ -33,17 +33,17 @@ rust_decimal_macros = { version = "1.16", default-features = false }
thiserror = "1.0.21"
schemars = "0.8"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
tg4 = { path = "../../packages/tg4", version = "0.10.0" }
tg-utils = { path = "../../packages/utils", version = "0.10.0" }
tg-bindings = { path = "../../packages/bindings", version = "0.10.0" }
tg4 = { path = "../../packages/tg4", version = "0.11.0" }
tg-utils = { path = "../../packages/utils", version = "0.11.0" }
tg-bindings = { path = "../../packages/bindings", version = "0.11.0" }

[dev-dependencies]
cosmwasm-schema = "1.0.0"
# bench dependencies
cosmwasm-vm = { version = "1.0.0" }
cw-multi-test = "0.13.4"
tg4-engagement = { path = "../tg4-engagement", version = "0.10.0", features = ["library"] }
tg4-stake = { path = "../tg4-stake", version = "0.10.0", features = ["library"] }
tg4-engagement = { path = "../tg4-engagement", version = "0.11.0", features = ["library"] }
tg4-stake = { path = "../tg4-stake", version = "0.11.0", features = ["library"] }

[[bench]]
name = "main"
Expand Down
10 changes: 5 additions & 5 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.10.0"
version = "0.11.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "TG4 implementation of group based on staked tokens"
Expand Down Expand Up @@ -28,11 +28,11 @@ cw-storage-plus = "0.13.4"
itertools = "0.10"
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
tg4 = { path = "../../packages/tg4", version = "0.10.0" }
tg-utils = { path = "../../packages/utils", version = "0.10.0" }
tg-bindings = { path = "../../packages/bindings", version = "0.10.0" }
tg4 = { path = "../../packages/tg4", version = "0.11.0" }
tg-utils = { path = "../../packages/utils", version = "0.11.0" }
tg-bindings = { path = "../../packages/bindings", version = "0.11.0" }
thiserror = "1.0.21"

[dev-dependencies]
cosmwasm-schema = "1.0.0"
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.10.0" }
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.11.0" }
16 changes: 8 additions & 8 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.10.0"
version = "0.11.0"
authors = ["Bartłomiej Kuras <bart.k@confio.gmbh>"]
edition = "2018"
description = "Implementing tgrade-community-pool voting contract"
Expand All @@ -21,16 +21,16 @@ cosmwasm-std = "1.0.0"
cw2 = "0.13.4"
schemars = "0.8.1"
serde = { version = "1", default-features = false, features = ["derive"] }
tg-bindings = { path = "../../packages/bindings", version = "0.10.0" }
tg-utils = { path = "../../packages/utils", version = "0.10.0" }
tg-voting-contract = { version = "0.10.0", path = "../../packages/voting-contract" }
tg3 = { path = "../../packages/tg3", version = "0.10.0" }
tg4-engagement = { path = "../tg4-engagement", version = "0.10.0", features = ["library"] }
tg-bindings = { path = "../../packages/bindings", version = "0.11.0" }
tg-utils = { path = "../../packages/utils", version = "0.11.0" }
tg-voting-contract = { version = "0.11.0", path = "../../packages/voting-contract" }
tg3 = { path = "../../packages/tg3", version = "0.11.0" }
tg4-engagement = { path = "../tg4-engagement", version = "0.11.0", features = ["library"] }
thiserror = "1"

[dev-dependencies]
anyhow = "1"
cosmwasm-schema = "1.0.0"
cw-multi-test = "0.13.4"
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.10.0" }
tg4 = { path = "../../packages/tg4", version = "0.10.0" }
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.11.0" }
tg4 = { path = "../../packages/tg4", version = "0.11.0" }
4 changes: 2 additions & 2 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.10.0"
version = "0.11.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Implementing tgrade-gov-reflect voting contract"
Expand Down Expand Up @@ -28,7 +28,7 @@ cosmwasm-std = "1.0.0"
cw-storage-plus = "0.13.4"
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
tg-bindings = { version = "0.10.0", path = "../../packages/bindings" }
tg-bindings = { version = "0.11.0", path = "../../packages/bindings" }
thiserror = "1"

[dev-dependencies]
Expand Down
20 changes: 10 additions & 10 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.10.0"
version = "0.11.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Implementing tgrade-validator-voting"
Expand All @@ -21,19 +21,19 @@ cosmwasm-std = "1.0.0"
cw2 = "0.13.4"
schemars = "0.8.1"
serde = { version = "1", default-features = false, features = ["derive"] }
tg-bindings = { path = "../../packages/bindings", version = "0.10.0" }
tg-utils = { path = "../../packages/utils", version = "0.10.0" }
tg-voting-contract = { version = "0.10.0", path = "../../packages/voting-contract" }
tg3 = { path = "../../packages/tg3", version = "0.10.0" }
tg-bindings = { path = "../../packages/bindings", version = "0.11.0" }
tg-utils = { path = "../../packages/utils", version = "0.11.0" }
tg-voting-contract = { version = "0.11.0", path = "../../packages/voting-contract" }
tg3 = { path = "../../packages/tg3", version = "0.11.0" }
thiserror = "1"

[dev-dependencies]
anyhow = "1"
cosmwasm-schema = "1.0.0"
cw-multi-test = "0.13.4"
cw-storage-plus = "0.13.4"
tg-bindings-test = { version = "0.10.0", path = "../../packages/bindings-test" }
tg-utils = { version = "0.10.0", path = "../../packages/utils" }
tg-voting-contract = { version = "0.10.0", path = "../../packages/voting-contract" }
tg4 = { path = "../../packages/tg4", version = "0.10.0" }
tg4-engagement = { path = "../tg4-engagement", version = "0.10.0", features = ["library"] }
tg-bindings-test = { version = "0.11.0", path = "../../packages/bindings-test" }
tg-utils = { version = "0.11.0", path = "../../packages/utils" }
tg-voting-contract = { version = "0.11.0", path = "../../packages/voting-contract" }
tg4 = { path = "../../packages/tg4", version = "0.11.0" }
tg4-engagement = { path = "../tg4-engagement", version = "0.11.0", features = ["library"] }
14 changes: 7 additions & 7 deletions contracts/tgrade-valset/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tgrade-valset"
version = "0.10.0"
version = "0.11.0"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Control the validator set based on membership of trusted tg4 contract"
Expand Down Expand Up @@ -35,9 +35,9 @@ schemars = "0.8"
semver = "1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = "1.0.21"
tg4 = { path = "../../packages/tg4", version = "0.10.0" }
tg-bindings = { version = "0.10.0", path = "../../packages/bindings" }
tg-utils = { version = "0.10.0", path = "../../packages/utils" }
tg4 = { path = "../../packages/tg4", version = "0.11.0" }
tg-bindings = { version = "0.11.0", path = "../../packages/bindings" }
tg-utils = { version = "0.11.0", path = "../../packages/utils" }

# For integration tests ("integration" feature)
bech32 = { version = "0.8.1", optional = true }
Expand All @@ -49,7 +49,7 @@ assert_matches = "1.5"
cosmwasm-schema = "1.0.0"
cw-multi-test = "0.13.4"
derivative = "2"
tg4-engagement = { path = "../tg4-engagement", version = "0.10.0" }
tg4-stake = { path = "../tg4-stake", version = "0.10.0" }
tg4-engagement = { path = "../tg4-engagement", version = "0.11.0" }
tg4-stake = { path = "../tg4-stake", version = "0.11.0" }
# we enable multitest feature only for tests
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.10.0" }
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.11.0" }

0 comments on commit 62ab94f

Please sign in to comment.