Skip to content

Commit d1890e1

Browse files
authored
Merge pull request #190 from confio/release-0.15.1
Release 0.15.1
2 parents 49360b3 + 1c3b3bc commit d1890e1

File tree

18 files changed

+95
-86
lines changed

18 files changed

+95
-86
lines changed

CHANGELOG.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,16 @@
22

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

5-
[Full Changelog](https://github.com/confio/poe-contracts/compare/v0.15.0...HEAD)
5+
[Full Changelog](https://github.com/confio/poe-contracts/compare/v0.15.1...HEAD)
6+
7+
## [v0.15.1](https://github.com/confio/poe-contracts/tree/v0.15.1) (2022-09-22)
8+
9+
[Full Changelog](https://github.com/confio/poe-contracts/compare/v0.15.0...v0.15.1)
10+
11+
**Merged pull requests:**
12+
13+
- Fix/contract name [\#189](https://github.com/confio/poe-contracts/pull/189) ([maurolacy](https://github.com/maurolacy))
14+
- Add promote / demote contract to privileged gov proposal [\#188](https://github.com/confio/poe-contracts/pull/188) ([maurolacy](https://github.com/maurolacy))
615

716
## [v0.15.0](https://github.com/confio/poe-contracts/tree/v0.15.0) (2022-09-19)
817

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.15.0"
3+
version = "0.15.1"
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.15.0"
2525
cw-storage-plus = "0.15.0"
2626
cw-utils = "0.15.0"
2727
cw2 = "0.15.0"
28-
tg-utils = { version = "0.15.0", path = "../../packages/utils" }
29-
tg-bindings = { version = "0.15.0", path = "../../packages/bindings" }
30-
tg4 = { path = "../../packages/tg4", version = "0.15.0" }
28+
tg-utils = { version = "0.15.1", path = "../../packages/utils" }
29+
tg-bindings = { version = "0.15.1", path = "../../packages/bindings" }
30+
tg4 = { path = "../../packages/tg4", version = "0.15.1" }
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.1.0"
3838
cw-multi-test = "0.15.0"
3939
derivative = "2"
40-
tg-bindings-test = { version = "0.15.0", path = "../../packages/bindings-test" }
40+
tg-bindings-test = { version = "0.15.1", 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.15.0"
3+
version = "0.15.1"
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.15.0"
3434
cw-storage-plus = "0.15.0"
3535
schemars = "0.8.1"
3636
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
37-
tg4 = { version = "0.15.0", path = "../../packages/tg4" }
37+
tg4 = { version = "0.15.1", 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.15.0"
3+
version = "0.15.1"
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.15.0" }
37-
tg-utils = { path = "../../packages/utils", version = "0.15.0" }
38-
tg-bindings = { path = "../../packages/bindings", version = "0.15.0" }
36+
tg4 = { path = "../../packages/tg4", version = "0.15.1" }
37+
tg-utils = { path = "../../packages/utils", version = "0.15.1" }
38+
tg-bindings = { path = "../../packages/bindings", version = "0.15.1" }
3939

4040
[dev-dependencies]
4141
cosmwasm-schema = "1.1.0"
4242
# bench dependencies
4343
cosmwasm-vm = { version = "1.1.0" }
4444
cw-multi-test = "0.15.0"
45-
tg4-engagement = { path = "../tg4-engagement", version = "0.15.0", features = ["library"] }
46-
tg4-stake = { path = "../tg4-stake", version = "0.15.0", features = ["library"] }
45+
tg4-engagement = { path = "../tg4-engagement", version = "0.15.1", features = ["library"] }
46+
tg4-stake = { path = "../tg4-stake", version = "0.15.1", 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.15.0"
3+
version = "0.15.1"
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.15.0"
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.15.0" }
32-
tg-utils = { path = "../../packages/utils", version = "0.15.0" }
33-
tg-bindings = { path = "../../packages/bindings", version = "0.15.0" }
31+
tg4 = { path = "../../packages/tg4", version = "0.15.1" }
32+
tg-utils = { path = "../../packages/utils", version = "0.15.1" }
33+
tg-bindings = { path = "../../packages/bindings", version = "0.15.1" }
3434
thiserror = "1.0.21"
3535

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

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.15.0"
3+
version = "0.15.1"
44
authors = ["Bartłomiej Kuras <[email protected]>"]
55
edition = "2018"
66
description = "Implementing tgrade-community-pool voting contract"
@@ -22,16 +22,16 @@ cw-utils = "0.15.0"
2222
cw2 = "0.15.0"
2323
schemars = "0.8.1"
2424
serde = { version = "1", default-features = false, features = ["derive"] }
25-
tg-bindings = { path = "../../packages/bindings", version = "0.15.0" }
26-
tg-utils = { path = "../../packages/utils", version = "0.15.0" }
27-
tg-voting-contract = { version = "0.15.0", path = "../../packages/voting-contract" }
28-
tg3 = { path = "../../packages/tg3", version = "0.15.0" }
29-
tg4-engagement = { path = "../tg4-engagement", version = "0.15.0", features = ["library"] }
25+
tg-bindings = { path = "../../packages/bindings", version = "0.15.1" }
26+
tg-utils = { path = "../../packages/utils", version = "0.15.1" }
27+
tg-voting-contract = { version = "0.15.1", path = "../../packages/voting-contract" }
28+
tg3 = { path = "../../packages/tg3", version = "0.15.1" }
29+
tg4-engagement = { path = "../tg4-engagement", version = "0.15.1", features = ["library"] }
3030
thiserror = "1"
3131

3232
[dev-dependencies]
3333
anyhow = "1"
3434
cosmwasm-schema = "1.1.0"
3535
cw-multi-test = "0.15.0"
36-
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.15.0" }
37-
tg4 = { path = "../../packages/tg4", version = "0.15.0" }
36+
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.15.1" }
37+
tg4 = { path = "../../packages/tg4", version = "0.15.1" }

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.15.0"
3+
version = "0.15.1"
44
authors = ["Ethan Frey <[email protected]>"]
55
edition = "2018"
66
description = "Implementing tgrade-gov-reflect voting contract"
@@ -28,7 +28,7 @@ cosmwasm-std = "1.1.0"
2828
cw-storage-plus = "0.15.0"
2929
schemars = "0.8.1"
3030
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
31-
tg-bindings = { version = "0.15.0", path = "../../packages/bindings" }
31+
tg-bindings = { version = "0.15.1", 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.15.0"
3+
version = "0.15.1"
44
authors = ["Ethan Frey <[email protected]>"]
55
edition = "2018"
66
description = "Implementing tgrade-validator-voting"
@@ -22,19 +22,19 @@ cw-utils = "0.15.0"
2222
cw2 = "0.15.0"
2323
schemars = "0.8.1"
2424
serde = { version = "1", default-features = false, features = ["derive"] }
25-
tg-bindings = { path = "../../packages/bindings", version = "0.15.0" }
26-
tg-utils = { path = "../../packages/utils", version = "0.15.0" }
27-
tg-voting-contract = { version = "0.15.0", path = "../../packages/voting-contract" }
28-
tg3 = { path = "../../packages/tg3", version = "0.15.0" }
25+
tg-bindings = { path = "../../packages/bindings", version = "0.15.1" }
26+
tg-utils = { path = "../../packages/utils", version = "0.15.1" }
27+
tg-voting-contract = { version = "0.15.1", path = "../../packages/voting-contract" }
28+
tg3 = { path = "../../packages/tg3", version = "0.15.1" }
2929
thiserror = "1"
3030

3131
[dev-dependencies]
3232
anyhow = "1"
3333
cosmwasm-schema = "1.1.0"
3434
cw-multi-test = "0.15.0"
3535
cw-storage-plus = "0.15.0"
36-
tg-bindings-test = { version = "0.15.0", path = "../../packages/bindings-test" }
37-
tg-utils = { version = "0.15.0", path = "../../packages/utils" }
38-
tg-voting-contract = { version = "0.15.0", path = "../../packages/voting-contract" }
39-
tg4 = { path = "../../packages/tg4", version = "0.15.0" }
40-
tg4-engagement = { path = "../tg4-engagement", version = "0.15.0", features = ["library"] }
36+
tg-bindings-test = { version = "0.15.1", path = "../../packages/bindings-test" }
37+
tg-utils = { version = "0.15.1", path = "../../packages/utils" }
38+
tg-voting-contract = { version = "0.15.1", path = "../../packages/voting-contract" }
39+
tg4 = { path = "../../packages/tg4", version = "0.15.1" }
40+
tg4-engagement = { path = "../tg4-engagement", version = "0.15.1", 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.15.0"
3+
version = "0.15.1"
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.15.0" }
39-
tg-bindings = { version = "0.15.0", path = "../../packages/bindings" }
40-
tg-utils = { version = "0.15.0", path = "../../packages/utils" }
38+
tg4 = { path = "../../packages/tg4", version = "0.15.1" }
39+
tg-bindings = { version = "0.15.1", path = "../../packages/bindings" }
40+
tg-utils = { version = "0.15.1", 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.1.0"
5050
cw-multi-test = "0.15.0"
5151
derivative = "2"
52-
tg4-engagement = { path = "../tg4-engagement", version = "0.15.0" }
53-
tg4-stake = { path = "../tg4-stake", version = "0.15.0" }
52+
tg4-engagement = { path = "../tg4-engagement", version = "0.15.1" }
53+
tg4-stake = { path = "../tg4-stake", version = "0.15.1" }
5454
# we enable multitest feature only for tests
55-
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.15.0" }
55+
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.15.1" }

0 commit comments

Comments
 (0)