Skip to content

Commit 4a7b7b1

Browse files
authored
Merge pull request #106 from confio/release-0.6.1
Release 0.6.1
2 parents 98e96c0 + 30ce3b8 commit 4a7b7b1

File tree

18 files changed

+137
-125
lines changed

18 files changed

+137
-125
lines changed

CHANGELOG.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,19 @@
22

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

5-
[Full Changelog](https://github.com/confio/poe-contracts/compare/v0.6.0...HEAD)
5+
[Full Changelog](https://github.com/confio/poe-contracts/compare/v0.6.1...HEAD)
6+
7+
## [v0.6.1](https://github.com/confio/poe-contracts/tree/v0.6.1) (2022-02-16)
8+
9+
[Full Changelog](https://github.com/confio/poe-contracts/compare/v0.6.0...v0.6.1)
10+
11+
**Closed issues:**
12+
13+
- Add API migration guide [\#70](https://github.com/confio/poe-contracts/issues/70)
14+
15+
**Merged pull requests:**
16+
17+
- Add `tg4-group` contract [\#105](https://github.com/confio/poe-contracts/pull/105) ([maurolacy](https://github.com/maurolacy))
618

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

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

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tg4-engagement"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
authors = ["Ethan Frey <[email protected]>"]
55
edition = "2018"
66
description = "Simple TG4 implementation of group membership controlled by an admin"
@@ -20,21 +20,21 @@ backtraces = ["cosmwasm-std/backtraces"]
2020
library = []
2121

2222
[dependencies]
23-
cw-utils = "0.11.0"
24-
cw2 = "0.11.0"
25-
cw-controllers = "0.11.0"
26-
cw-storage-plus = "0.11.0"
27-
tg4 = { path = "../../packages/tg4", version = "0.6.0" }
28-
tg-utils = { version = "0.6.0", path = "../../packages/utils" }
29-
tg-bindings = { version = "0.6.0", path = "../../packages/bindings" }
23+
cw-utils = "0.11.1"
24+
cw2 = "0.11.1"
25+
cw-controllers = "0.11.1"
26+
cw-storage-plus = "0.11.1"
27+
tg4 = { path = "../../packages/tg4", version = "0.6.1" }
28+
tg-utils = { version = "0.6.1", path = "../../packages/utils" }
29+
tg-bindings = { version = "0.6.1", path = "../../packages/bindings" }
3030
cosmwasm-std = { version = "1.0.0-beta5" }
3131
schemars = "0.8"
3232
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
3333
thiserror = { version = "1.0.21" }
3434

3535
[dev-dependencies]
3636
cosmwasm-schema = { version = "1.0.0-beta5" }
37-
cw-multi-test = { version = "0.11.0" }
38-
tg-bindings-test = { version = "0.6.0", path = "../../packages/bindings-test" }
37+
cw-multi-test = { version = "0.11.1" }
38+
tg-bindings-test = { version = "0.6.1", path = "../../packages/bindings-test" }
3939
derivative = "2"
4040
anyhow = "1"

contracts/tg4-group/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tg4-group"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
authors = ["Mauro Lacy <[email protected]>"]
55
edition = "2018"
66
description = "Simple tg4 implementation of group membership controlled by admin"
@@ -28,9 +28,9 @@ library = []
2828
[dependencies]
2929
cw-utils = "0.11.1"
3030
cw2 = "0.11.1"
31-
tg-bindings = { version = "0.6.0", path = "../../packages/bindings" }
32-
tg-utils = { version = "0.6.0", path = "../../packages/utils" }
33-
tg4 = { version = "0.6.0", path = "../../packages/tg4" }
31+
tg-bindings = { version = "0.6.1", path = "../../packages/bindings" }
32+
tg-utils = { version = "0.6.1", path = "../../packages/utils" }
33+
tg4 = { version = "0.6.1", path = "../../packages/tg4" }
3434
cw-controllers = "0.11.1"
3535
cw-storage-plus = "0.11.1"
3636
cosmwasm-std = { version = "1.0.0-beta5" }

contracts/tg4-mixer/Cargo.toml

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tg4-mixer"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
authors = ["Ethan Frey <[email protected]>"]
55
edition = "2018"
66
description = "TG4 implementation that combines two different groups with a merge function"
@@ -23,13 +23,13 @@ library = []
2323
benches = [ "cosmwasm-vm" ]
2424

2525
[dependencies]
26-
cw-utils = "0.11.0"
27-
cw2 = "0.11.0"
28-
cw20 = "0.11.0"
29-
cw-storage-plus = "0.11.0"
30-
tg4 = { path = "../../packages/tg4", version = "0.6.0" }
31-
tg-utils = { path = "../../packages/utils", version = "0.6.0" }
32-
tg-bindings = { path = "../../packages/bindings", version = "0.6.0" }
26+
cw-utils = "0.11.1"
27+
cw2 = "0.11.1"
28+
cw20 = "0.11.1"
29+
cw-storage-plus = "0.11.1"
30+
tg4 = { path = "../../packages/tg4", version = "0.6.1" }
31+
tg-utils = { path = "../../packages/utils", version = "0.6.1" }
32+
tg-bindings = { path = "../../packages/bindings", version = "0.6.1" }
3333
cosmwasm-std = "1.0.0-beta5"
3434
integer-sqrt = "0.1.5"
3535
schemars = "0.8"
@@ -42,12 +42,12 @@ rust_decimal_macros = { version = "1.16", default-features = false }
4242
cosmwasm-vm = { version = "1.0.0-beta5", optional = true }
4343

4444
[dev-dependencies]
45-
cw-multi-test = { version = "0.11.0" }
45+
cw-multi-test = { version = "0.11.1" }
4646
cosmwasm-schema = { version = "1.0.0-beta5" }
4747
# version's workaround for issue with cyclic dependencies during cargo publish
4848
# https://github.com/rust-lang/cargo/issues/4242
49-
tg4-engagement = { path = "../tg4-engagement", version = "0.6.0", features = ["library"] }
50-
tg4-stake = { path = "../tg4-stake", version = "0.6.0", features = ["library"] }
49+
tg4-engagement = { path = "../tg4-engagement", version = "0.6.1", features = ["library"] }
50+
tg4-stake = { path = "../tg4-stake", version = "0.6.1", features = ["library"] }
5151

5252
[[bench]]
5353
name = "main"

contracts/tg4-stake/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tg4-stake"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
authors = ["Ethan Frey <[email protected]>"]
55
edition = "2018"
66
description = "TG4 implementation of group based on staked tokens"
@@ -20,13 +20,13 @@ backtraces = ["cosmwasm-std/backtraces"]
2020
library = []
2121

2222
[dependencies]
23-
cw-utils = "0.11.0"
24-
cw2 = "0.11.0"
25-
cw-controllers = "0.11.0"
26-
cw-storage-plus = "0.11.0"
27-
tg4 = { path = "../../packages/tg4", version = "0.6.0" }
28-
tg-utils = { path = "../../packages/utils", version = "0.6.0" }
29-
tg-bindings = { path = "../../packages/bindings", version = "0.6.0" }
23+
cw-utils = "0.11.1"
24+
cw2 = "0.11.1"
25+
cw-controllers = "0.11.1"
26+
cw-storage-plus = "0.11.1"
27+
tg4 = { path = "../../packages/tg4", version = "0.6.1" }
28+
tg-utils = { path = "../../packages/utils", version = "0.6.1" }
29+
tg-bindings = { path = "../../packages/bindings", version = "0.6.1" }
3030
cosmwasm-std = "1.0.0-beta5"
3131
schemars = "0.8.1"
3232
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tgrade-community-pool"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
authors = ["Bartłomiej Kuras <[email protected]>"]
55
edition = "2018"
66
description = "Implementing tgrade-community-pool voting contract"
@@ -17,20 +17,20 @@ backtraces = ["cosmwasm-std/backtraces"]
1717
library = []
1818

1919
[dependencies]
20-
cw2 = "0.11.0"
21-
tg3 = { path = "../../packages/tg3", version = "0.6.0" }
20+
cw2 = "0.11.1"
21+
tg3 = { path = "../../packages/tg3", version = "0.6.1" }
2222
cosmwasm-std = "1.0.0-beta5"
2323
schemars = "0.8.1"
2424
serde = { version = "1", default-features = false, features = ["derive"] }
25-
tg-bindings = { path = "../../packages/bindings", version = "0.6.0" }
26-
tg-utils = { path = "../../packages/utils", version = "0.6.0" }
27-
tg-voting-contract = { version = "0.6.0", path = "../../packages/voting-contract" }
28-
tg4-engagement = { path = "../tg4-engagement", version = "0.6.0", features = ["library"] }
25+
tg-bindings = { path = "../../packages/bindings", version = "0.6.1" }
26+
tg-utils = { path = "../../packages/utils", version = "0.6.1" }
27+
tg-voting-contract = { version = "0.6.1", path = "../../packages/voting-contract" }
28+
tg4-engagement = { path = "../tg4-engagement", version = "0.6.1", features = ["library"] }
2929
thiserror = "1"
3030

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

contracts/tgrade-gov-reflect/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tgrade-gov-reflect"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
authors = ["Ethan Frey <[email protected]>"]
55
edition = "2018"
66
repository = "https://github.com/confio/poe-contracts"
@@ -24,8 +24,8 @@ backtraces = ["cosmwasm-std/backtraces"]
2424

2525
[dependencies]
2626
cosmwasm-std = "1.0.0-beta5"
27-
cw-storage-plus = "0.11.0"
28-
tg-bindings = { version = "0.6.0", path = "../../packages/bindings" }
27+
cw-storage-plus = "0.11.1"
28+
tg-bindings = { version = "0.6.1", path = "../../packages/bindings" }
2929
schemars = "0.8.1"
3030
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
3131
thiserror = "1"
+13-13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tgrade-validator-voting"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
authors = ["Ethan Frey <[email protected]>"]
55
edition = "2018"
66
description = "Implementing tgrade-validator-voting"
@@ -17,23 +17,23 @@ backtraces = ["cosmwasm-std/backtraces"]
1717
library = []
1818

1919
[dependencies]
20-
cw2 = "0.11.0"
21-
tg3 = { path = "../../packages/tg3", version = "0.6.0" }
20+
cw2 = "0.11.1"
21+
tg3 = { path = "../../packages/tg3", version = "0.6.1" }
2222
cosmwasm-std = "1.0.0-beta5"
2323
schemars = "0.8.1"
2424
serde = { version = "1", default-features = false, features = ["derive"] }
25-
tg-bindings = { path = "../../packages/bindings", version = "0.6.0" }
26-
tg-utils = { path = "../../packages/utils", version = "0.6.0" }
27-
tg-voting-contract = { version = "0.6.0", path = "../../packages/voting-contract" }
25+
tg-bindings = { path = "../../packages/bindings", version = "0.6.1" }
26+
tg-utils = { path = "../../packages/utils", version = "0.6.1" }
27+
tg-voting-contract = { version = "0.6.1", path = "../../packages/voting-contract" }
2828
thiserror = "1"
2929

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

0 commit comments

Comments
 (0)