Skip to content

Commit

Permalink
Merge pull request #95 from confio/88-release-060-rc1
Browse files Browse the repository at this point in the history
Release 0.6.0-rc1
  • Loading branch information
ueco-jb authored Feb 9, 2022
2 parents 2d0ed40 + 40dd75b commit c8c5b22
Show file tree
Hide file tree
Showing 17 changed files with 104 additions and 74 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,32 @@

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

**Breaking changes:**

- Use specilaized tg3 version of voting API for tgrade contracts [\#85](https://github.com/confio/poe-contracts/issues/85)
- Valset config contract names [\#96](https://github.com/confio/poe-contracts/pull/96) ([maurolacy](https://github.com/maurolacy))
- tg3: Common voting interfaces for tgrade [\#93](https://github.com/confio/poe-contracts/pull/93) ([hashedone](https://github.com/hashedone))
- Rename API to points and rewards [\#50](https://github.com/confio/poe-contracts/pull/50) ([ethanfrey](https://github.com/ethanfrey))

**Closed issues:**

- Valset: add `ListJailedValidators` query [\#87](https://github.com/confio/poe-contracts/issues/87)
- Add `list_votes_by_voter` query to `voting_contract` [\#78](https://github.com/confio/poe-contracts/issues/78)
- Increase max limit [\#76](https://github.com/confio/poe-contracts/issues/76)
- Missing items found when updating Go code [\#75](https://github.com/confio/poe-contracts/issues/75)
- Tools to help build API Migration Guide [\#72](https://github.com/confio/poe-contracts/issues/72)
- \[tgrade-valset\] Metadata issues [\#66](https://github.com/confio/poe-contracts/issues/66)
- Ensure validator is online before adding to the active set [\#36](https://github.com/confio/poe-contracts/issues/36)

**Merged pull requests:**

- Valset: Implement ListJailedValidators query [\#92](https://github.com/confio/poe-contracts/pull/92) ([ueco-jb](https://github.com/ueco-jb))
- Valset: metadata validation [\#84](https://github.com/confio/poe-contracts/pull/84) ([ueco-jb](https://github.com/ueco-jb))
- Increase MAX\_LIMIT constant to 100 and DEFAULT\_LIMIT to 30 [\#80](https://github.com/confio/poe-contracts/pull/80) ([ueco-jb](https://github.com/ueco-jb))
- Voting Contract: Add list\_votes\_by\_voter query [\#79](https://github.com/confio/poe-contracts/pull/79) ([ueco-jb](https://github.com/ueco-jb))
- Feature-gated `SimulateValidatorSet` [\#77](https://github.com/confio/poe-contracts/pull/77) ([maurolacy](https://github.com/maurolacy))
- Add `diff_schema.sh` / `diff_state.sh` tools [\#74](https://github.com/confio/poe-contracts/pull/74) ([maurolacy](https://github.com/maurolacy))

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

[Full Changelog](https://github.com/confio/poe-contracts/compare/v0.6.0-alpha1...v0.6.0-beta1)
Expand Down
28 changes: 14 additions & 14 deletions Cargo.lock

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

4 changes: 4 additions & 0 deletions MIGRATING.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,12 @@ Messages changes:
Messages changes:

* `min_weight` field on instantiate message renamed to `min_points`
* rewards_code_id field on instantiate message renamed to validator_group_code_id
* rewards_contract field on InstantiateReponse message renamed to validator_group


State changes:

* `min_weight` field on `config` item renamed to `min_points`
* rewards_contract field on config item renamed to validator_group

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.6.0-beta1"
version = "0.6.0-rc1"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "Simple TG4 implementation of group membership controlled by an admin"
Expand All @@ -24,9 +24,9 @@ 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-beta1" }
tg-utils = { version = "0.6.0-beta1", path = "../../packages/utils" }
tg-bindings = { version = "0.6.0-beta1", path = "../../packages/bindings" }
tg4 = { path = "../../packages/tg4", version = "0.6.0-rc1" }
tg-utils = { version = "0.6.0-rc1", path = "../../packages/utils" }
tg-bindings = { version = "0.6.0-rc1", path = "../../packages/bindings" }
cosmwasm-std = { version = "1.0.0-beta" }
schemars = "0.8"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
Expand All @@ -35,6 +35,6 @@ thiserror = { version = "1.0.21" }
[dev-dependencies]
cosmwasm-schema = { version = "1.0.0-beta" }
cw-multi-test = { version = "0.11.0" }
tg-bindings-test = { version = "0.6.0-beta1", path = "../../packages/bindings-test" }
tg-bindings-test = { version = "0.6.0-rc1", path = "../../packages/bindings-test" }
derivative = "2"
anyhow = "1"
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.6.0-beta1"
version = "0.6.0-rc1"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "TG4 implementation that combines two different groups with a merge function"
Expand All @@ -27,9 +27,9 @@ 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-beta1" }
tg-utils = { path = "../../packages/utils", version = "0.6.0-beta1" }
tg-bindings = { path = "../../packages/bindings", version = "0.6.0-beta1" }
tg4 = { path = "../../packages/tg4", version = "0.6.0-rc1" }
tg-utils = { path = "../../packages/utils", version = "0.6.0-rc1" }
tg-bindings = { path = "../../packages/bindings", version = "0.6.0-rc1" }
cosmwasm-std = "1.0.0-beta"
integer-sqrt = "0.1.5"
schemars = "0.8"
Expand All @@ -46,8 +46,8 @@ cw-multi-test = { version = "0.11.0" }
cosmwasm-schema = { version = "1.0.0-beta" }
# 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-beta1", features = ["library"] }
tg4-stake = { path = "../tg4-stake", version = "0.6.0-beta1", features = ["library"] }
tg4-engagement = { path = "../tg4-engagement", version = "0.6.0-rc1", features = ["library"] }
tg4-stake = { path = "../tg4-stake", version = "0.6.0-rc1", features = ["library"] }

[[bench]]
name = "main"
Expand Down
8 changes: 4 additions & 4 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-beta1"
version = "0.6.0-rc1"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "TG4 implementation of group based on staked tokens"
Expand All @@ -24,9 +24,9 @@ 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-beta1" }
tg-utils = { path = "../../packages/utils", version = "0.6.0-beta1" }
tg-bindings = { path = "../../packages/bindings", version = "0.6.0-beta1" }
tg4 = { path = "../../packages/tg4", version = "0.6.0-rc1" }
tg-utils = { path = "../../packages/utils", version = "0.6.0-rc1" }
tg-bindings = { path = "../../packages/bindings", version = "0.6.0-rc1" }
cosmwasm-std = "1.0.0-beta"
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
Expand Down
14 changes: 7 additions & 7 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-beta1"
version = "0.6.0-rc1"
authors = ["Bartłomiej Kuras <[email protected]>"]
edition = "2018"
description = "Implementing tgrade-community-pool voting contract"
Expand All @@ -22,15 +22,15 @@ tg3 = { path = "../../packages/tg3", version = "0.6.0-beta1" }
cosmwasm-std = "1.0.0-beta"
schemars = "0.8.1"
serde = { version = "1", default-features = false, features = ["derive"] }
tg-bindings = { path = "../../packages/bindings", version = "0.6.0-beta1" }
tg-utils = { path = "../../packages/utils", version = "0.6.0-beta1" }
tg-voting-contract = { version = "0.6.0-beta1", path = "../../packages/voting-contract" }
tg4-engagement = { path = "../tg4-engagement", version = "0.6.0-beta1", features = ["library"] }
tg-bindings = { path = "../../packages/bindings", version = "0.6.0-rc1" }
tg-utils = { path = "../../packages/utils", version = "0.6.0-rc1" }
tg-voting-contract = { version = "0.6.0-rc1", path = "../../packages/voting-contract" }
tg4-engagement = { path = "../tg4-engagement", version = "0.6.0-rc1", features = ["library"] }
thiserror = "1"

[dev-dependencies]
anyhow = "1"
cosmwasm-schema = "1.0.0-beta"
cw-multi-test = "0.11.0"
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.6.0-beta1" }
tg4 = { path = "../../packages/tg4", version = "0.6.0-beta1" }
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.6.0-rc1" }
tg4 = { path = "../../packages/tg4", version = "0.6.0-rc1" }
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.6.0-beta1"
version = "0.6.0-rc1"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
repository = "https://github.com/confio/poe-contracts"
Expand All @@ -25,7 +25,7 @@ backtraces = ["cosmwasm-std/backtraces"]
[dependencies]
cosmwasm-std = "1.0.0-beta"
cw-storage-plus = "0.11.0"
tg-bindings = { version = "0.6.0-beta1", path = "../../packages/bindings" }
tg-bindings = { version = "0.6.0-rc1", path = "../../packages/bindings" }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = "1"
Expand Down
18 changes: 9 additions & 9 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-beta1"
version = "0.6.0-rc1"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "Implementing tgrade-validator-voting"
Expand All @@ -22,18 +22,18 @@ tg3 = { path = "../../packages/tg3", version = "0.6.0-beta1" }
cosmwasm-std = "1.0.0-beta"
schemars = "0.8.1"
serde = { version = "1", default-features = false, features = ["derive"] }
tg-bindings = { path = "../../packages/bindings", version = "0.6.0-beta1" }
tg-utils = { path = "../../packages/utils", version = "0.6.0-beta1" }
tg-voting-contract = { version = "0.6.0-beta1", path = "../../packages/voting-contract" }
tg-bindings = { path = "../../packages/bindings", version = "0.6.0-rc1" }
tg-utils = { path = "../../packages/utils", version = "0.6.0-rc1" }
tg-voting-contract = { version = "0.6.0-rc1", path = "../../packages/voting-contract" }
thiserror = "1"

[dev-dependencies]
anyhow = "1"
cosmwasm-schema = "1.0.0-beta"
cw-multi-test = "0.11.0"
cw-storage-plus = "0.11.0"
tg-bindings-test = { version = "0.6.0-beta1", path = "../../packages/bindings-test" }
tg-utils = { version = "0.6.0-beta1", path = "../../packages/utils" }
tg-voting-contract = { version = "0.6.0-beta1", path = "../../packages/voting-contract" }
tg4 = { path = "../../packages/tg4", version = "0.6.0-beta1" }
tg4-engagement = { path = "../tg4-engagement", version = "0.6.0-beta1", features = ["library"] }
tg-bindings-test = { version = "0.6.0-rc1", path = "../../packages/bindings-test" }
tg-utils = { version = "0.6.0-rc1", path = "../../packages/utils" }
tg-voting-contract = { version = "0.6.0-rc1", path = "../../packages/voting-contract" }
tg4 = { path = "../../packages/tg4", version = "0.6.0-rc1" }
tg4-engagement = { path = "../tg4-engagement", version = "0.6.0-rc1", 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.6.0-beta1"
version = "0.6.0-rc1"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "Control the validator set based on membership of trusted tg4 contract"
Expand Down Expand Up @@ -29,9 +29,9 @@ integration = ["bech32", "cosmwasm-vm"]
[dependencies]
cw-utils = { version = "0.11.0" }
cw2 = { version = "0.11.0" }
tg4 = { path = "../../packages/tg4", version = "0.6.0-beta1" }
tg-bindings = { version = "0.6.0-beta1", path = "../../packages/bindings" }
tg-utils = { version = "0.6.0-beta1", path = "../../packages/utils" }
tg4 = { path = "../../packages/tg4", version = "0.6.0-rc1" }
tg-bindings = { version = "0.6.0-rc1", path = "../../packages/bindings" }
tg-utils = { version = "0.6.0-rc1", path = "../../packages/utils" }
cw-controllers = { version = "0.11.0" }
cw-storage-plus = { version = "0.11.0" }
cosmwasm-std = { version = "1.0.0-beta4" }
Expand All @@ -46,10 +46,10 @@ cosmwasm-vm = { version = "1.0.0-beta4", optional = true, default-features = fal
[dev-dependencies]
cosmwasm-schema = { version = "1.0.0-beta4" }
cw-multi-test = "0.11.0"
tg4-engagement = { path = "../tg4-engagement", version = "0.6.0-beta1" }
tg4-stake = { path = "../tg4-stake", version = "0.6.0-beta1" }
tg4-engagement = { path = "../tg4-engagement", version = "0.6.0-rc1" }
tg4-stake = { path = "../tg4-stake", version = "0.6.0-rc1" }
# we enable multitest feature only for tests
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.6.0-beta1" }
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.6.0-rc1" }
derivative = "2"
anyhow = "1"
assert_matches = "1.5"
8 changes: 4 additions & 4 deletions contracts/tgrade-vesting-account/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tgrade-vesting-account"
version = "0.6.0-beta1"
version = "0.6.0-rc1"
authors = ["Jakub Bogucki <[email protected]>"]
edition = "2018"
description = "Vesting Account as a contract"
Expand All @@ -22,8 +22,8 @@ cw2 = "0.11.0"
cw-storage-plus = "0.11.0"
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
tg-bindings = { version = "0.6.0-beta1", path = "../../packages/bindings" }
tg-utils = { version = "0.6.0-beta1", path = "../../packages/utils" }
tg-bindings = { version = "0.6.0-rc1", path = "../../packages/bindings" }
tg-utils = { version = "0.6.0-rc1", path = "../../packages/utils" }
thiserror = "1"

[dev-dependencies]
Expand All @@ -32,4 +32,4 @@ assert_matches = "1"
derivative = "2"
cosmwasm-schema = "1.0.0-beta"
cw-multi-test = "0.11.0"
tg-bindings-test = { version = "0.6.0-beta1", path = "../../packages/bindings-test" }
tg-bindings-test = { version = "0.6.0-rc1", path = "../../packages/bindings-test" }
Loading

0 comments on commit c8c5b22

Please sign in to comment.