Skip to content

Commit

Permalink
Merge pull request #512 from confio/release-0.12
Browse files Browse the repository at this point in the history
Release 0.12.0
  • Loading branch information
maurolacy authored Jul 14, 2022
2 parents 9406fce + ba52064 commit a2fa0b7
Show file tree
Hide file tree
Showing 6 changed files with 83 additions and 60 deletions.
25 changes: 24 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,30 @@

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

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

## [v0.12.0](https://github.com/confio/tgrade-contracts/tree/v0.12.0) (2022-07-14)

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

**Breaking changes:**

- Fix AP proposal queries [\#506](https://github.com/confio/tgrade-contracts/pull/506) ([maurolacy](https://github.com/maurolacy))

**Fixed bugs:**

- Fix arbiter pool proposal queries [\#505](https://github.com/confio/tgrade-contracts/issues/505)

**Closed issues:**

- \[tgrade-ap-voting\] Add proposal validation during creation [\#510](https://github.com/confio/tgrade-contracts/issues/510)
- Execute proposal creating error message [\#507](https://github.com/confio/tgrade-contracts/issues/507)
- Implement missing governance proposals [\#504](https://github.com/confio/tgrade-contracts/issues/504)

**Merged pull requests:**

- Add AP voting proposal validation during proposal creation [\#511](https://github.com/confio/tgrade-contracts/pull/511) ([maurolacy](https://github.com/maurolacy))
- Add proposal validation during proposal creation [\#509](https://github.com/confio/tgrade-contracts/pull/509) ([maurolacy](https://github.com/maurolacy))

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

Expand Down
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.

20 changes: 10 additions & 10 deletions contracts/tgrade-ap-voting/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tgrade-ap-voting"
version = "0.11.0"
version = "0.12.0"
authors = ["Bartłomiej Kuras <[email protected]>"]
edition = "2018"
description = "Implementing tgrade-ap-voting"
Expand All @@ -24,19 +24,19 @@ schemars = "0.8.1"
semver = "1"
serde = { version = "1", default-features = false, features = ["derive"] }
thiserror = "1"
tg-bindings = "0.11.0"
tg-voting-contract = "0.11.0"
tg-utils = "0.11.0"
tg3 = "0.11.0"
tg-bindings = "0.12.0"
tg-voting-contract = "0.12.0"
tg-utils = "0.12.0"
tg3 = "0.12.0"

[dev-dependencies]
anyhow = "1"
assert_matches = "1.5"
cosmwasm-schema = "1.0.0"
cw-multi-test = "0.13.4"
cw-storage-plus = "0.13.4"
tg-bindings-test = "0.11.0"
tg-test-utils = "0.11.0"
tg4 = "0.11.0"
tg4-engagement = "0.11.0"
tgrade-oc-proposals = { path = "../tgrade-oc-proposals", version = "0.11.0" }
tg-bindings-test = "0.12.0"
tg-test-utils = "0.12.0"
tg4 = "0.12.0"
tg4-engagement = "0.12.0"
tgrade-oc-proposals = { path = "../tgrade-oc-proposals", version = "0.12.0" }
20 changes: 10 additions & 10 deletions contracts/tgrade-oc-proposals/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tgrade-oc-proposals"
version = "0.11.0"
version = "0.12.0"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "Implementing tgrade-oc-proposals"
Expand All @@ -19,18 +19,18 @@ cw2 = "0.13.4"
cw-storage-plus = "0.13.4"
schemars = "0.8.1"
serde = { version = "1", default-features = false, features = ["derive"] }
tg3 = "0.11.0"
tg4 = "0.11.0"
tg4-engagement = { version = "0.11.0", features = ["library"] }
tg-bindings = "0.11.0"
tg-utils = "0.11.0"
tg-voting-contract = "0.11.0"
tgrade-valset = { version = "0.11.0", features = ["library"] }
tg3 = "0.12.0"
tg4 = "0.12.0"
tg4-engagement = { version = "0.12.0", features = ["library"] }
tg-bindings = "0.12.0"
tg-utils = "0.12.0"
tg-voting-contract = "0.12.0"
tgrade-valset = { version = "0.12.0", features = ["library"] }
thiserror = "1"

[dev-dependencies]
anyhow = "1"
cosmwasm-schema = "1.0.0"
cw-multi-test = "0.13.4"
tg-bindings-test = "0.11.0"
tg-test-utils = "0.11.0"
tg-bindings-test = "0.12.0"
tg-test-utils = "0.12.0"
18 changes: 9 additions & 9 deletions contracts/tgrade-tc-payments/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tgrade-tc-payments"
version = "0.11.0"
version = "0.12.0"
authors = ["Mauro Lacy <[email protected]>"]
edition = "2021"
description = "Oversight Community / Arbiter Pool payments contract"
Expand All @@ -27,15 +27,15 @@ cw-controllers = "0.13.4"
cw-storage-plus = "0.13.4"
schemars = "0.8"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
tg-bindings = "0.11.0"
tg4 = "0.11.0"
tg-bindings = "0.12.0"
tg4 = "0.12.0"
thiserror = "1.0.21"

[dev-dependencies]
cw-multi-test = "0.13.4"
tg4-engagement = "0.11.0"
tg-voting-contract = "0.11.0"
tg-bindings-test = "0.11.0"
tg-utils = "0.11.0"
tgrade-trusted-circle = { version = "0.11.0", path = "../tgrade-trusted-circle" }
tgrade-ap-voting = { version = "0.11.0", path = "../tgrade-ap-voting" }
tg4-engagement = "0.12.0"
tg-voting-contract = "0.12.0"
tg-bindings-test = "0.12.0"
tg-utils = "0.12.0"
tgrade-trusted-circle = { version = "0.12.0", path = "../tgrade-trusted-circle" }
tgrade-ap-voting = { version = "0.12.0", path = "../tgrade-ap-voting" }
16 changes: 8 additions & 8 deletions contracts/tgrade-trusted-circle/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tgrade-trusted-circle"
version = "0.11.0"
version = "0.12.0"
authors = ["Mauro Lacy <[email protected]>", "Ethan Frey <[email protected]>"]
edition = "2018"
description = "Trusted Circle implementation based on TG4 for group membership"
Expand All @@ -27,11 +27,11 @@ cw-storage-plus = "0.13.4"
schemars = "0.8"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
semver = "1"
tg3 = "0.11.0"
tg4 = "0.11.0"
tg-bindings = "0.11.0"
tg-utils = "0.11.0"
tg-voting-contract = "0.11.0"
tg3 = "0.12.0"
tg4 = "0.12.0"
tg-bindings = "0.12.0"
tg-utils = "0.12.0"
tg-voting-contract = "0.12.0"
thiserror = "1.0.21"

[dev-dependencies]
Expand All @@ -40,5 +40,5 @@ cosmwasm-schema = "1.0.0"
cw-multi-test = "0.13.4"
derivative = "2"
serde_json = "1.0.79"
tg-bindings-test = "0.11.0"
tg4-engagement = "0.11.0"
tg-bindings-test = "0.12.0"
tg4-engagement = "0.12.0"

0 comments on commit a2fa0b7

Please sign in to comment.