Skip to content

Commit c86ecb1

Browse files
authored
Merge pull request #122 from confio/release-0.6.2-patch1
Release 0.6.2-patch1
2 parents aa02ced + 78f9eb7 commit c86ecb1

File tree

17 files changed

+84
-84
lines changed

17 files changed

+84
-84
lines changed

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.6.2"
3+
version = "0.6.2-patch1"
44
authors = ["Ethan Frey <[email protected]>"]
55
edition = "2018"
66
description = "Simple TG4 implementation of group membership controlled by an admin"
@@ -24,9 +24,9 @@ cw-utils = "0.11.1"
2424
cw2 = "0.11.1"
2525
cw-controllers = "0.11.1"
2626
cw-storage-plus = "0.11.1"
27-
tg4 = { path = "../../packages/tg4", version = "0.6.2" }
28-
tg-utils = { version = "0.6.2", path = "../../packages/utils" }
29-
tg-bindings = { version = "0.6.2", path = "../../packages/bindings" }
27+
tg4 = { path = "../../packages/tg4", version = "0.6.2-patch1" }
28+
tg-utils = { version = "0.6.2-patch1", path = "../../packages/utils" }
29+
tg-bindings = { version = "0.6.2-patch1", 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"] }
@@ -35,6 +35,6 @@ thiserror = { version = "1.0.21" }
3535
[dev-dependencies]
3636
cosmwasm-schema = { version = "1.0.0-beta5" }
3737
cw-multi-test = { version = "0.11.1" }
38-
tg-bindings-test = { version = "0.6.2", path = "../../packages/bindings-test" }
38+
tg-bindings-test = { version = "0.6.2-patch1", path = "../../packages/bindings-test" }
3939
derivative = "2"
4040
anyhow = "1"

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.6.2"
3+
version = "0.6.2-patch1"
44
authors = ["Mauro Lacy <[email protected]>"]
55
edition = "2018"
66
description = "Simple tg4 implementation of group membership controlled by admin"
@@ -29,7 +29,7 @@ library = []
2929
cw-utils = "0.11.1"
3030
cw2 = "0.11.1"
3131
cw4 = "0.11.1"
32-
tg4 = { version = "0.6.2", path = "../../packages/tg4" }
32+
tg4 = { version = "0.6.2-patch1", path = "../../packages/tg4" }
3333
cw-controllers = "0.11.1"
3434
cw-storage-plus = "0.11.1"
3535
cosmwasm-std = { version = "1.0.0-beta5" }

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.6.2"
3+
version = "0.6.2-patch1"
44
authors = ["Ethan Frey <[email protected]>"]
55
edition = "2018"
66
description = "TG4 implementation that combines two different groups with a merge function"
@@ -27,9 +27,9 @@ cw-utils = "0.11.1"
2727
cw2 = "0.11.1"
2828
cw20 = "0.11.1"
2929
cw-storage-plus = "0.11.1"
30-
tg4 = { path = "../../packages/tg4", version = "0.6.2" }
31-
tg-utils = { path = "../../packages/utils", version = "0.6.2" }
32-
tg-bindings = { path = "../../packages/bindings", version = "0.6.2" }
30+
tg4 = { path = "../../packages/tg4", version = "0.6.2-patch1" }
31+
tg-utils = { path = "../../packages/utils", version = "0.6.2-patch1" }
32+
tg-bindings = { path = "../../packages/bindings", version = "0.6.2-patch1" }
3333
cosmwasm-std = "1.0.0-beta5"
3434
integer-sqrt = "0.1.5"
3535
schemars = "0.8"
@@ -46,8 +46,8 @@ 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.2", features = ["library"] }
50-
tg4-stake = { path = "../tg4-stake", version = "0.6.2", features = ["library"] }
49+
tg4-engagement = { path = "../tg4-engagement", version = "0.6.2-patch1", features = ["library"] }
50+
tg4-stake = { path = "../tg4-stake", version = "0.6.2-patch1", features = ["library"] }
5151

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

contracts/tg4-stake/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tg4-stake"
3-
version = "0.6.2"
3+
version = "0.6.2-patch1"
44
authors = ["Ethan Frey <[email protected]>"]
55
edition = "2018"
66
description = "TG4 implementation of group based on staked tokens"
@@ -24,9 +24,9 @@ cw-utils = "0.11.1"
2424
cw2 = "0.11.1"
2525
cw-controllers = "0.11.1"
2626
cw-storage-plus = "0.11.1"
27-
tg4 = { path = "../../packages/tg4", version = "0.6.2" }
28-
tg-utils = { path = "../../packages/utils", version = "0.6.2" }
29-
tg-bindings = { path = "../../packages/bindings", version = "0.6.2" }
27+
tg4 = { path = "../../packages/tg4", version = "0.6.2-patch1" }
28+
tg-utils = { path = "../../packages/utils", version = "0.6.2-patch1" }
29+
tg-bindings = { path = "../../packages/bindings", version = "0.6.2-patch1" }
3030
cosmwasm-std = "1.0.0-beta5"
3131
schemars = "0.8.1"
3232
serde = { version = "1.0.103", default-features = false, features = ["derive"] }

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.6.2"
3+
version = "0.6.2-patch1"
44
authors = ["Bartłomiej Kuras <[email protected]>"]
55
edition = "2018"
66
description = "Implementing tgrade-community-pool voting contract"
@@ -18,19 +18,19 @@ library = []
1818

1919
[dependencies]
2020
cw2 = "0.11.1"
21-
tg3 = { path = "../../packages/tg3", version = "0.6.2" }
21+
tg3 = { path = "../../packages/tg3", version = "0.6.2-patch1" }
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.2" }
26-
tg-utils = { path = "../../packages/utils", version = "0.6.2" }
27-
tg-voting-contract = { version = "0.6.2", path = "../../packages/voting-contract" }
28-
tg4-engagement = { path = "../tg4-engagement", version = "0.6.2", features = ["library"] }
25+
tg-bindings = { path = "../../packages/bindings", version = "0.6.2-patch1" }
26+
tg-utils = { path = "../../packages/utils", version = "0.6.2-patch1" }
27+
tg-voting-contract = { version = "0.6.2-patch1", path = "../../packages/voting-contract" }
28+
tg4-engagement = { path = "../tg4-engagement", version = "0.6.2-patch1", features = ["library"] }
2929
thiserror = "1"
3030

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

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.6.2"
3+
version = "0.6.2-patch1"
44
authors = ["Ethan Frey <[email protected]>"]
55
edition = "2018"
66
repository = "https://github.com/confio/poe-contracts"
@@ -25,7 +25,7 @@ backtraces = ["cosmwasm-std/backtraces"]
2525
[dependencies]
2626
cosmwasm-std = "1.0.0-beta5"
2727
cw-storage-plus = "0.11.1"
28-
tg-bindings = { version = "0.6.2", path = "../../packages/bindings" }
28+
tg-bindings = { version = "0.6.2-patch1", path = "../../packages/bindings" }
2929
schemars = "0.8.1"
3030
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
3131
thiserror = "1"
+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tgrade-validator-voting"
3-
version = "0.6.2"
3+
version = "0.6.2-patch1"
44
authors = ["Ethan Frey <[email protected]>"]
55
edition = "2018"
66
description = "Implementing tgrade-validator-voting"
@@ -18,22 +18,22 @@ library = []
1818

1919
[dependencies]
2020
cw2 = "0.11.1"
21-
tg3 = { path = "../../packages/tg3", version = "0.6.2" }
21+
tg3 = { path = "../../packages/tg3", version = "0.6.2-patch1" }
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.2" }
26-
tg-utils = { path = "../../packages/utils", version = "0.6.2" }
27-
tg-voting-contract = { version = "0.6.2", path = "../../packages/voting-contract" }
25+
tg-bindings = { path = "../../packages/bindings", version = "0.6.2-patch1" }
26+
tg-utils = { path = "../../packages/utils", version = "0.6.2-patch1" }
27+
tg-voting-contract = { version = "0.6.2-patch1", path = "../../packages/voting-contract" }
2828
thiserror = "1"
2929

3030
[dev-dependencies]
3131
anyhow = "1"
3232
cosmwasm-schema = "1.0.0-beta5"
3333
cw-multi-test = "0.11.1"
3434
cw-storage-plus = "0.11.1"
35-
tg-bindings-test = { version = "0.6.2", path = "../../packages/bindings-test" }
36-
tg-utils = { version = "0.6.2", path = "../../packages/utils" }
37-
tg-voting-contract = { version = "0.6.2", path = "../../packages/voting-contract" }
38-
tg4 = { path = "../../packages/tg4", version = "0.6.2" }
39-
tg4-engagement = { path = "../tg4-engagement", version = "0.6.2", features = ["library"] }
35+
tg-bindings-test = { version = "0.6.2-patch1", path = "../../packages/bindings-test" }
36+
tg-utils = { version = "0.6.2-patch1", path = "../../packages/utils" }
37+
tg-voting-contract = { version = "0.6.2-patch1", path = "../../packages/voting-contract" }
38+
tg4 = { path = "../../packages/tg4", version = "0.6.2-patch1" }
39+
tg4-engagement = { path = "../tg4-engagement", version = "0.6.2-patch1", 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.6.2"
3+
version = "0.6.2-patch1"
44
authors = ["Ethan Frey <[email protected]>"]
55
edition = "2018"
66
description = "Control the validator set based on membership of trusted tg4 contract"
@@ -29,9 +29,9 @@ integration = ["bech32", "cosmwasm-vm"]
2929
[dependencies]
3030
cw-utils = { version = "0.11.1" }
3131
cw2 = { version = "0.11.1" }
32-
tg4 = { path = "../../packages/tg4", version = "0.6.2" }
33-
tg-bindings = { version = "0.6.2", path = "../../packages/bindings" }
34-
tg-utils = { version = "0.6.2", path = "../../packages/utils" }
32+
tg4 = { path = "../../packages/tg4", version = "0.6.2-patch1" }
33+
tg-bindings = { version = "0.6.2-patch1", path = "../../packages/bindings" }
34+
tg-utils = { version = "0.6.2-patch1", path = "../../packages/utils" }
3535
cw-controllers = { version = "0.11.1" }
3636
cw-storage-plus = { version = "0.11.1" }
3737
cosmwasm-std = { version = "1.0.0-beta5" }
@@ -46,10 +46,10 @@ cosmwasm-vm = { version = "1.0.0-beta5", optional = true, default-features = fal
4646
[dev-dependencies]
4747
cosmwasm-schema = { version = "1.0.0-beta5" }
4848
cw-multi-test = "0.11.1"
49-
tg4-engagement = { path = "../tg4-engagement", version = "0.6.2" }
50-
tg4-stake = { path = "../tg4-stake", version = "0.6.2" }
49+
tg4-engagement = { path = "../tg4-engagement", version = "0.6.2-patch1" }
50+
tg4-stake = { path = "../tg4-stake", version = "0.6.2-patch1" }
5151
# we enable multitest feature only for tests
52-
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.6.2" }
52+
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.6.2-patch1" }
5353
derivative = "2"
5454
anyhow = "1"
5555
assert_matches = "1.5"

contracts/tgrade-vesting-account/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tgrade-vesting-account"
3-
version = "0.6.2"
3+
version = "0.6.2-patch1"
44
authors = ["Jakub Bogucki <[email protected]>"]
55
edition = "2018"
66
description = "Vesting Account as a contract"
@@ -22,8 +22,8 @@ cw2 = "0.11.1"
2222
cw-storage-plus = "0.11.1"
2323
schemars = "0.8.1"
2424
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
25-
tg-bindings = { version = "0.6.2", path = "../../packages/bindings" }
26-
tg-utils = { version = "0.6.2", path = "../../packages/utils" }
25+
tg-bindings = { version = "0.6.2-patch1", path = "../../packages/bindings" }
26+
tg-utils = { version = "0.6.2-patch1", path = "../../packages/utils" }
2727
thiserror = "1"
2828

2929
[dev-dependencies]
@@ -32,4 +32,4 @@ assert_matches = "1"
3232
derivative = "2"
3333
cosmwasm-schema = "1.0.0-beta5"
3434
cw-multi-test = "0.11.1"
35-
tg-bindings-test = { version = "0.6.2", path = "../../packages/bindings-test" }
35+
tg-bindings-test = { version = "0.6.2-patch1", path = "../../packages/bindings-test" }

0 commit comments

Comments
 (0)