Skip to content

Commit

Permalink
Merge pull request #26 from confio/0.5.3-2-release
Browse files Browse the repository at this point in the history
Release v0.5.3-2
  • Loading branch information
maurolacy committed Jan 18, 2022
2 parents 83ef810 + 3db84ca commit 5ce12cf
Show file tree
Hide file tree
Showing 17 changed files with 117 additions and 73 deletions.
43 changes: 43 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Changelog

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

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

## [v0.5.3](https://github.com/confio/poe-contracts/tree/v0.5.3-2) (2022-01-18)

[Full Changelog](https://github.com/confio/poe-contracts/compare/7a91033173dbd32d835373b31ad1c1b7c7db4296...v0.5.3-2)

**Merged pull requests:**

- test utils moved from tgrade contracts [\#25](https://github.com/confio/poe-contracts/pull/25) ([hashedone](https://github.com/hashedone))
- bindings-test: added missing genesis constructor [\#24](https://github.com/confio/poe-contracts/pull/24) ([hashedone](https://github.com/hashedone))
- Add publish script and add license to Cargo.toml files [\#21](https://github.com/confio/poe-contracts/pull/21) ([ethanfrey](https://github.com/ethanfrey))

**Fixed bugs:**

- voting: Abstaining should be able to trigger early end [\#16](https://github.com/confio/poe-contracts/issues/16)
- Proposals cannot be executed based on quorum after voting period over [\#14](https://github.com/confio/poe-contracts/issues/14)
- community-pool proposals can be executed multiple times [\#12](https://github.com/confio/poe-contracts/issues/12)

**Closed issues:**

- Tag poe-contracts v0.5.3 [\#13](https://github.com/confio/poe-contracts/issues/13)
- Move over gov-reflect and vesting-contract to this repo [\#7](https://github.com/confio/poe-contracts/issues/7)
- Multitests for tgrade-voting-contract [\#6](https://github.com/confio/poe-contracts/issues/6)

**Merged pull requests:**

- 0.5.3 release [\#19](https://github.com/confio/poe-contracts/pull/19) ([maurolacy](https://github.com/maurolacy))
- Fix proposal status not updated [\#18](https://github.com/confio/poe-contracts/pull/18) ([maurolacy](https://github.com/maurolacy))
- Move over gov-reflect and vesting-account contract to this repo [\#11](https://github.com/confio/poe-contracts/pull/11) ([ueco-jb](https://github.com/ueco-jb))
- voting-contract: Move rules builder follow-up [\#10](https://github.com/confio/poe-contracts/pull/10) ([uint](https://github.com/uint))
- Move `RulesBuilder` into `voting-contract` [\#9](https://github.com/confio/poe-contracts/pull/9) ([uint](https://github.com/uint))
- voting-contract: tests [\#8](https://github.com/confio/poe-contracts/pull/8) ([uint](https://github.com/uint))
- tgrade-validator-voting and tgrade-community-pool contracts moved [\#5](https://github.com/confio/poe-contracts/pull/5) ([hashedone](https://github.com/hashedone))
- Moved PoE contracts: engagement, mixer, stake, valset [\#4](https://github.com/confio/poe-contracts/pull/4) ([hashedone](https://github.com/hashedone))
- Basic CI config [\#2](https://github.com/confio/poe-contracts/pull/2) ([hashedone](https://github.com/hashedone))
- readme, utility scripts [\#1](https://github.com/confio/poe-contracts/pull/1) ([hashedone](https://github.com/hashedone))


\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
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.

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.5.3"
version = "0.5.3-2"
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.5.3" }
tg-utils = { version = "0.5.3", path = "../../packages/utils" }
tg-bindings = { version = "0.5.3", path = "../../packages/bindings" }
tg4 = { path = "../../packages/tg4", version = "0.5.3-2" }
tg-utils = { version = "0.5.3-2", path = "../../packages/utils" }
tg-bindings = { version = "0.5.3-2", 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.5.3", path = "../../packages/bindings-test" }
tg-bindings-test = { version = "0.5.3-2", 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.5.3"
version = "0.5.3-2"
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.5.3" }
tg-utils = { path = "../../packages/utils", version = "0.5.3" }
tg-bindings = { path = "../../packages/bindings", version = "0.5.3" }
tg4 = { path = "../../packages/tg4", version = "0.5.3-2" }
tg-utils = { path = "../../packages/utils", version = "0.5.3-2" }
tg-bindings = { path = "../../packages/bindings", version = "0.5.3-2" }
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.5.3, < 1.0.0", features = ["library"] }
tg4-stake = { path = "../tg4-stake", version = "0.5.3", features = ["library"] }
tg4-engagement = { path = "../tg4-engagement", version = ">= 0.5.3-2, < 1.0.0", features = ["library"] }
tg4-stake = { path = "../tg4-stake", version = "0.5.3-2", 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.5.3"
version = "0.5.3-2"
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.5.3" }
tg-utils = { path = "../../packages/utils", version = "0.5.3" }
tg-bindings = { path = "../../packages/bindings", version = "0.5.3" }
tg4 = { path = "../../packages/tg4", version = "0.5.3-2" }
tg-utils = { path = "../../packages/utils", version = "0.5.3-2" }
tg-bindings = { path = "../../packages/bindings", version = "0.5.3-2" }
cosmwasm-std = "1.0.0-beta"
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
Expand Down
12 changes: 6 additions & 6 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.5.3"
version = "0.5.3-2"
authors = ["Bartłomiej Kuras <[email protected]>"]
edition = "2018"
description = "Implementing tgrade-community-pool voting contract"
Expand All @@ -22,14 +22,14 @@ cw3 = "0.11.0"
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.5.3" }
tg-voting-contract = { version = "0.5.3", path = "../../packages/voting-contract" }
tg4-engagement = { path = "../tg4-engagement", version = "0.5.3", features = ["library"] }
tg-bindings = { path = "../../packages/bindings", version = "0.5.3-2" }
tg-voting-contract = { version = "0.5.3-2", path = "../../packages/voting-contract" }
tg4-engagement = { path = "../tg4-engagement", version = "0.5.3-2", 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.5.3" }
tg4 = { path = "../../packages/tg4", version = "0.5.3" }
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.5.3-2" }
tg4 = { path = "../../packages/tg4", version = "0.5.3-2" }
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.5.3"
version = "0.5.3-2"
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.5.3", path = "../../packages/bindings" }
tg-bindings = { version = "0.5.3-2", path = "../../packages/bindings" }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = "1"
Expand Down
16 changes: 8 additions & 8 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.5.3"
version = "0.5.3-2"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "Implementing tgrade-validator-voting"
Expand All @@ -22,17 +22,17 @@ cw3 = "0.11.0"
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.5.3" }
tg-voting-contract = { version = "0.5.3", path = "../../packages/voting-contract" }
tg-bindings = { path = "../../packages/bindings", version = "0.5.3-2" }
tg-voting-contract = { version = "0.5.3-2", 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.5.3", path = "../../packages/bindings-test" }
tg-utils = { version = "0.5.3", path = "../../packages/utils" }
tg-voting-contract = { version = "0.5.3", path = "../../packages/voting-contract" }
tg4 = { path = "../../packages/tg4", version = "0.5.3" }
tg4-engagement = { path = "../tg4-engagement", version = "0.5.3", features = ["library"] }
tg-bindings-test = { version = "0.5.3-2", path = "../../packages/bindings-test" }
tg-utils = { version = "0.5.3-2", path = "../../packages/utils" }
tg-voting-contract = { version = "0.5.3-2", path = "../../packages/voting-contract" }
tg4 = { path = "../../packages/tg4", version = "0.5.3-2" }
tg4-engagement = { path = "../tg4-engagement", version = "0.5.3-2", 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.5.3"
version = "0.5.3-2"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "Control the validator set based on membership of trusted tg4 contract"
Expand Down Expand Up @@ -28,9 +28,9 @@ library = []
[dependencies]
cw-utils = { version = "0.11.0" }
cw2 = { version = "0.11.0" }
tg4 = { path = "../../packages/tg4", version = "0.5.3" }
tg-bindings = { version = "0.5.3", path = "../../packages/bindings" }
tg-utils = { version = "0.5.3", path = "../../packages/utils" }
tg4 = { path = "../../packages/tg4", version = "0.5.3-2" }
tg-bindings = { version = "0.5.3-2", path = "../../packages/bindings" }
tg-utils = { version = "0.5.3-2", path = "../../packages/utils" }
cw-controllers = { version = "0.11.0" }
cw-storage-plus = { version = "0.11.0" }
cosmwasm-std = { version = "1.0.0-beta" }
Expand All @@ -41,10 +41,10 @@ thiserror = { version = "1.0.21" }
[dev-dependencies]
cosmwasm-schema = { version = "1.0.0-beta" }
cw-multi-test = "0.11.0"
tg4-engagement = { path = "../tg4-engagement", version = "0.5.3" }
tg4-stake = { path = "../tg4-stake", version = "0.5.3" }
tg4-engagement = { path = "../tg4-engagement", version = "0.5.3-2" }
tg4-stake = { path = "../tg4-stake", version = "0.5.3-2" }
# we enable multitest feature only for tests
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.5.3" }
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.5.3-2" }
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.5.3"
version = "0.5.3-2"
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.5.3", path = "../../packages/bindings" }
tg-utils = { version = "0.5.3", path = "../../packages/utils" }
tg-bindings = { version = "0.5.3-2", path = "../../packages/bindings" }
tg-utils = { version = "0.5.3-2", 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.5.3", path = "../../packages/bindings-test" }
tg-bindings-test = { version = "0.5.3-2", path = "../../packages/bindings-test" }
Loading

0 comments on commit 5ce12cf

Please sign in to comment.