Skip to content

Commit 85ca722

Browse files
authored
Merge pull request #161 from confio/release-0.12
Release 0.12
2 parents 954f9b0 + e52c529 commit 85ca722

File tree

18 files changed

+100
-86
lines changed

18 files changed

+100
-86
lines changed

CHANGELOG.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,21 @@
22

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

5-
[Full Changelog](https://github.com/confio/poe-contracts/compare/v0.11.0...HEAD)
5+
[Full Changelog](https://github.com/confio/poe-contracts/compare/v0.12.0...HEAD)
6+
7+
## [v0.12.0](https://github.com/confio/poe-contracts/tree/v0.12.0) (2022-07-14)
8+
9+
[Full Changelog](https://github.com/confio/poe-contracts/compare/v0.11.0...v0.12.0)
10+
11+
**Closed issues:**
12+
13+
- Review TODOs / FIXMEs [\#138](https://github.com/confio/poe-contracts/issues/138)
14+
15+
**Merged pull requests:**
16+
17+
- TODO / FIXME review [\#160](https://github.com/confio/poe-contracts/pull/160) ([maurolacy](https://github.com/maurolacy))
18+
- Tgrade gov change params 2 [\#159](https://github.com/confio/poe-contracts/pull/159) ([maurolacy](https://github.com/maurolacy))
19+
- Implement the ChangeParams proposal [\#157](https://github.com/confio/poe-contracts/pull/157) ([maurolacy](https://github.com/maurolacy))
620

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

Cargo.lock

+16-16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contracts/tg4-engagement/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tg4-engagement"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
authors = ["Ethan Frey <[email protected]>"]
55
edition = "2018"
66
description = "Simple TG4 implementation of group membership controlled by an admin"
@@ -25,9 +25,9 @@ cw-controllers = "0.13.4"
2525
cw-storage-plus = "0.13.4"
2626
cw-utils = "0.13.4"
2727
cw2 = "0.13.4"
28-
tg-utils = { version = "0.11.0", path = "../../packages/utils" }
29-
tg-bindings = { version = "0.11.0", path = "../../packages/bindings" }
30-
tg4 = { path = "../../packages/tg4", version = "0.11.0" }
28+
tg-utils = { version = "0.12.0", path = "../../packages/utils" }
29+
tg-bindings = { version = "0.12.0", path = "../../packages/bindings" }
30+
tg4 = { path = "../../packages/tg4", version = "0.12.0" }
3131
schemars = "0.8"
3232
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
3333
thiserror = "1.0.21"
@@ -37,4 +37,4 @@ anyhow = "1"
3737
cosmwasm-schema = "1.0.0"
3838
cw-multi-test = "0.13.4"
3939
derivative = "2"
40-
tg-bindings-test = { version = "0.11.0", path = "../../packages/bindings-test" }
40+
tg-bindings-test = { version = "0.12.0", path = "../../packages/bindings-test" }

contracts/tg4-group/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tg4-group"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
authors = ["Mauro Lacy <[email protected]>"]
55
edition = "2018"
66
description = "Simple tg4 implementation of group membership controlled by admin"
@@ -34,7 +34,7 @@ cw-controllers = "0.13.4"
3434
cw-storage-plus = "0.13.4"
3535
schemars = "0.8.1"
3636
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
37-
tg4 = { version = "0.11.0", path = "../../packages/tg4" }
37+
tg4 = { version = "0.12.0", path = "../../packages/tg4" }
3838
thiserror = { version = "1.0.23" }
3939

4040
[dev-dependencies]

contracts/tg4-mixer/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tg4-mixer"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
authors = ["Ethan Frey <[email protected]>"]
55
edition = "2018"
66
description = "TG4 implementation that combines two different groups with a merge function"
@@ -33,17 +33,17 @@ rust_decimal_macros = { version = "1.16", default-features = false }
3333
thiserror = "1.0.21"
3434
schemars = "0.8"
3535
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
36-
tg4 = { path = "../../packages/tg4", version = "0.11.0" }
37-
tg-utils = { path = "../../packages/utils", version = "0.11.0" }
38-
tg-bindings = { path = "../../packages/bindings", version = "0.11.0" }
36+
tg4 = { path = "../../packages/tg4", version = "0.12.0" }
37+
tg-utils = { path = "../../packages/utils", version = "0.12.0" }
38+
tg-bindings = { path = "../../packages/bindings", version = "0.12.0" }
3939

4040
[dev-dependencies]
4141
cosmwasm-schema = "1.0.0"
4242
# bench dependencies
4343
cosmwasm-vm = { version = "1.0.0" }
4444
cw-multi-test = "0.13.4"
45-
tg4-engagement = { path = "../tg4-engagement", version = "0.11.0", features = ["library"] }
46-
tg4-stake = { path = "../tg4-stake", version = "0.11.0", features = ["library"] }
45+
tg4-engagement = { path = "../tg4-engagement", version = "0.12.0", features = ["library"] }
46+
tg4-stake = { path = "../tg4-stake", version = "0.12.0", features = ["library"] }
4747

4848
[[bench]]
4949
name = "main"

contracts/tg4-stake/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tg4-stake"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
authors = ["Ethan Frey <[email protected]>"]
55
edition = "2018"
66
description = "TG4 implementation of group based on staked tokens"
@@ -28,11 +28,11 @@ cw-storage-plus = "0.13.4"
2828
itertools = "0.10"
2929
schemars = "0.8.1"
3030
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
31-
tg4 = { path = "../../packages/tg4", version = "0.11.0" }
32-
tg-utils = { path = "../../packages/utils", version = "0.11.0" }
33-
tg-bindings = { path = "../../packages/bindings", version = "0.11.0" }
31+
tg4 = { path = "../../packages/tg4", version = "0.12.0" }
32+
tg-utils = { path = "../../packages/utils", version = "0.12.0" }
33+
tg-bindings = { path = "../../packages/bindings", version = "0.12.0" }
3434
thiserror = "1.0.21"
3535

3636
[dev-dependencies]
3737
cosmwasm-schema = "1.0.0"
38-
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.11.0" }
38+
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.12.0" }

contracts/tgrade-community-pool/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tgrade-community-pool"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
authors = ["Bartłomiej Kuras <[email protected]>"]
55
edition = "2018"
66
description = "Implementing tgrade-community-pool voting contract"
@@ -21,16 +21,16 @@ cosmwasm-std = "1.0.0"
2121
cw2 = "0.13.4"
2222
schemars = "0.8.1"
2323
serde = { version = "1", default-features = false, features = ["derive"] }
24-
tg-bindings = { path = "../../packages/bindings", version = "0.11.0" }
25-
tg-utils = { path = "../../packages/utils", version = "0.11.0" }
26-
tg-voting-contract = { version = "0.11.0", path = "../../packages/voting-contract" }
27-
tg3 = { path = "../../packages/tg3", version = "0.11.0" }
28-
tg4-engagement = { path = "../tg4-engagement", version = "0.11.0", features = ["library"] }
24+
tg-bindings = { path = "../../packages/bindings", version = "0.12.0" }
25+
tg-utils = { path = "../../packages/utils", version = "0.12.0" }
26+
tg-voting-contract = { version = "0.12.0", path = "../../packages/voting-contract" }
27+
tg3 = { path = "../../packages/tg3", version = "0.12.0" }
28+
tg4-engagement = { path = "../tg4-engagement", version = "0.12.0", features = ["library"] }
2929
thiserror = "1"
3030

3131
[dev-dependencies]
3232
anyhow = "1"
3333
cosmwasm-schema = "1.0.0"
3434
cw-multi-test = "0.13.4"
35-
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.11.0" }
36-
tg4 = { path = "../../packages/tg4", version = "0.11.0" }
35+
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.12.0" }
36+
tg4 = { path = "../../packages/tg4", version = "0.12.0" }

contracts/tgrade-gov-reflect/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tgrade-gov-reflect"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
authors = ["Ethan Frey <[email protected]>"]
55
edition = "2018"
66
description = "Implementing tgrade-gov-reflect voting contract"
@@ -28,7 +28,7 @@ cosmwasm-std = "1.0.0"
2828
cw-storage-plus = "0.13.4"
2929
schemars = "0.8.1"
3030
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
31-
tg-bindings = { version = "0.11.0", path = "../../packages/bindings" }
31+
tg-bindings = { version = "0.12.0", path = "../../packages/bindings" }
3232
thiserror = "1"
3333

3434
[dev-dependencies]

contracts/tgrade-validator-voting/Cargo.toml

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tgrade-validator-voting"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
authors = ["Ethan Frey <[email protected]>"]
55
edition = "2018"
66
description = "Implementing tgrade-validator-voting"
@@ -21,19 +21,19 @@ cosmwasm-std = "1.0.0"
2121
cw2 = "0.13.4"
2222
schemars = "0.8.1"
2323
serde = { version = "1", default-features = false, features = ["derive"] }
24-
tg-bindings = { path = "../../packages/bindings", version = "0.11.0" }
25-
tg-utils = { path = "../../packages/utils", version = "0.11.0" }
26-
tg-voting-contract = { version = "0.11.0", path = "../../packages/voting-contract" }
27-
tg3 = { path = "../../packages/tg3", version = "0.11.0" }
24+
tg-bindings = { path = "../../packages/bindings", version = "0.12.0" }
25+
tg-utils = { path = "../../packages/utils", version = "0.12.0" }
26+
tg-voting-contract = { version = "0.12.0", path = "../../packages/voting-contract" }
27+
tg3 = { path = "../../packages/tg3", version = "0.12.0" }
2828
thiserror = "1"
2929

3030
[dev-dependencies]
3131
anyhow = "1"
3232
cosmwasm-schema = "1.0.0"
3333
cw-multi-test = "0.13.4"
3434
cw-storage-plus = "0.13.4"
35-
tg-bindings-test = { version = "0.11.0", path = "../../packages/bindings-test" }
36-
tg-utils = { version = "0.11.0", path = "../../packages/utils" }
37-
tg-voting-contract = { version = "0.11.0", path = "../../packages/voting-contract" }
38-
tg4 = { path = "../../packages/tg4", version = "0.11.0" }
39-
tg4-engagement = { path = "../tg4-engagement", version = "0.11.0", features = ["library"] }
35+
tg-bindings-test = { version = "0.12.0", path = "../../packages/bindings-test" }
36+
tg-utils = { version = "0.12.0", path = "../../packages/utils" }
37+
tg-voting-contract = { version = "0.12.0", path = "../../packages/voting-contract" }
38+
tg4 = { path = "../../packages/tg4", version = "0.12.0" }
39+
tg4-engagement = { path = "../tg4-engagement", version = "0.12.0", features = ["library"] }

contracts/tgrade-valset/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tgrade-valset"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
authors = ["Ethan Frey <[email protected]>"]
55
edition = "2018"
66
description = "Control the validator set based on membership of trusted tg4 contract"
@@ -35,9 +35,9 @@ schemars = "0.8"
3535
semver = "1"
3636
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
3737
thiserror = "1.0.21"
38-
tg4 = { path = "../../packages/tg4", version = "0.11.0" }
39-
tg-bindings = { version = "0.11.0", path = "../../packages/bindings" }
40-
tg-utils = { version = "0.11.0", path = "../../packages/utils" }
38+
tg4 = { path = "../../packages/tg4", version = "0.12.0" }
39+
tg-bindings = { version = "0.12.0", path = "../../packages/bindings" }
40+
tg-utils = { version = "0.12.0", path = "../../packages/utils" }
4141

4242
# For integration tests ("integration" feature)
4343
bech32 = { version = "0.8.1", optional = true }
@@ -49,7 +49,7 @@ assert_matches = "1.5"
4949
cosmwasm-schema = "1.0.0"
5050
cw-multi-test = "0.13.4"
5151
derivative = "2"
52-
tg4-engagement = { path = "../tg4-engagement", version = "0.11.0" }
53-
tg4-stake = { path = "../tg4-stake", version = "0.11.0" }
52+
tg4-engagement = { path = "../tg4-engagement", version = "0.12.0" }
53+
tg4-stake = { path = "../tg4-stake", version = "0.12.0" }
5454
# we enable multitest feature only for tests
55-
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.11.0" }
55+
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.12.0" }

0 commit comments

Comments
 (0)