-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #205 from confio/release-0.17.1
Release 0.17.1
- Loading branch information
Showing
18 changed files
with
98 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tg4-engagement" | ||
version = "0.17.0" | ||
version = "0.17.1" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Simple TG4 implementation of group membership controlled by an admin" | ||
|
@@ -25,9 +25,9 @@ cw-controllers = "1.0.0" | |
cw-storage-plus = "1.0.1" | ||
cw-utils = "1.0.1" | ||
cw2 = "1.0.0" | ||
tg-utils = { version = "0.17.0", path = "../../packages/utils" } | ||
tg-bindings = { version = "0.17.0", path = "../../packages/bindings" } | ||
tg4 = { path = "../../packages/tg4", version = "0.17.0" } | ||
tg-utils = { version = "0.17.1", path = "../../packages/utils" } | ||
tg-bindings = { version = "0.17.1", path = "../../packages/bindings" } | ||
tg4 = { path = "../../packages/tg4", version = "0.17.1" } | ||
schemars = "0.8" | ||
semver = "1" | ||
serde = { version = "1.0.103", default-features = false, features = ["derive"] } | ||
|
@@ -38,4 +38,4 @@ anyhow = "1" | |
cosmwasm-schema = "1.1.9" | ||
cw-multi-test = "0.16.2" | ||
derivative = "2" | ||
tg-bindings-test = { version = "0.17.0", path = "../../packages/bindings-test" } | ||
tg-bindings-test = { version = "0.17.1", path = "../../packages/bindings-test" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tg4-group" | ||
version = "0.17.0" | ||
version = "0.17.1" | ||
authors = ["Mauro Lacy <[email protected]>"] | ||
edition = "2018" | ||
description = "Simple tg4 implementation of group membership controlled by admin" | ||
|
@@ -34,7 +34,7 @@ cw-controllers = "1.0.0" | |
cw-storage-plus = "1.0.1" | ||
schemars = "0.8.1" | ||
serde = { version = "1.0.103", default-features = false, features = ["derive"] } | ||
tg4 = { version = "0.17.0", path = "../../packages/tg4" } | ||
tg4 = { version = "0.17.1", path = "../../packages/tg4" } | ||
thiserror = { version = "1.0.23" } | ||
|
||
[dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tg4-mixer" | ||
version = "0.17.0" | ||
version = "0.17.1" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
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 } | |
thiserror = "1.0.21" | ||
schemars = "0.8" | ||
serde = { version = "1.0.103", default-features = false, features = ["derive"] } | ||
tg4 = { path = "../../packages/tg4", version = "0.17.0" } | ||
tg-utils = { path = "../../packages/utils", version = "0.17.0" } | ||
tg-bindings = { path = "../../packages/bindings", version = "0.17.0" } | ||
tg4 = { path = "../../packages/tg4", version = "0.17.1" } | ||
tg-utils = { path = "../../packages/utils", version = "0.17.1" } | ||
tg-bindings = { path = "../../packages/bindings", version = "0.17.1" } | ||
|
||
[dev-dependencies] | ||
cosmwasm-schema = "1.1.9" | ||
# bench dependencies | ||
cosmwasm-vm = { version = "1.1.0" } | ||
cw-multi-test = "0.16.2" | ||
tg4-engagement = { path = "../tg4-engagement", version = "0.17.0", features = ["library"] } | ||
tg4-stake = { path = "../tg4-stake", version = "0.17.0", features = ["library"] } | ||
tg4-engagement = { path = "../tg4-engagement", version = "0.17.1", features = ["library"] } | ||
tg4-stake = { path = "../tg4-stake", version = "0.17.1", features = ["library"] } | ||
|
||
[[bench]] | ||
name = "main" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tg4-stake" | ||
version = "0.17.0" | ||
version = "0.17.1" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "TG4 implementation of group based on staked tokens" | ||
|
@@ -28,11 +28,11 @@ cw-storage-plus = "1.0.1" | |
itertools = "0.10" | ||
schemars = "0.8.1" | ||
serde = { version = "1.0.103", default-features = false, features = ["derive"] } | ||
tg4 = { path = "../../packages/tg4", version = "0.17.0" } | ||
tg-utils = { path = "../../packages/utils", version = "0.17.0" } | ||
tg-bindings = { path = "../../packages/bindings", version = "0.17.0" } | ||
tg4 = { path = "../../packages/tg4", version = "0.17.1" } | ||
tg-utils = { path = "../../packages/utils", version = "0.17.1" } | ||
tg-bindings = { path = "../../packages/bindings", version = "0.17.1" } | ||
thiserror = "1.0.21" | ||
|
||
[dev-dependencies] | ||
cosmwasm-schema = "1.1.9" | ||
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.17.0" } | ||
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.17.1" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tgrade-community-pool" | ||
version = "0.17.0" | ||
version = "0.17.1" | ||
authors = ["Bartłomiej Kuras <[email protected]>"] | ||
edition = "2018" | ||
description = "Implementing tgrade-community-pool voting contract" | ||
|
@@ -22,16 +22,16 @@ cw-utils = "1.0.1" | |
cw2 = "1.0.0" | ||
schemars = "0.8.1" | ||
serde = { version = "1", default-features = false, features = ["derive"] } | ||
tg-bindings = { path = "../../packages/bindings", version = "0.17.0" } | ||
tg-utils = { path = "../../packages/utils", version = "0.17.0" } | ||
tg-voting-contract = { version = "0.17.0", path = "../../packages/voting-contract" } | ||
tg3 = { path = "../../packages/tg3", version = "0.17.0" } | ||
tg4-engagement = { path = "../tg4-engagement", version = "0.17.0", features = ["library"] } | ||
tg-bindings = { path = "../../packages/bindings", version = "0.17.1" } | ||
tg-utils = { path = "../../packages/utils", version = "0.17.1" } | ||
tg-voting-contract = { version = "0.17.1", path = "../../packages/voting-contract" } | ||
tg3 = { path = "../../packages/tg3", version = "0.17.1" } | ||
tg4-engagement = { path = "../tg4-engagement", version = "0.17.1", features = ["library"] } | ||
thiserror = "1" | ||
|
||
[dev-dependencies] | ||
anyhow = "1" | ||
cosmwasm-schema = "1.1.9" | ||
cw-multi-test = "0.16.2" | ||
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.17.0" } | ||
tg4 = { path = "../../packages/tg4", version = "0.17.0" } | ||
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.17.1" } | ||
tg4 = { path = "../../packages/tg4", version = "0.17.1" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tgrade-gov-reflect" | ||
version = "0.17.0" | ||
version = "0.17.1" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Implementing tgrade-gov-reflect voting contract" | ||
|
@@ -28,7 +28,7 @@ cosmwasm-std = "1.1.9" | |
cw-storage-plus = "1.0.1" | ||
schemars = "0.8.1" | ||
serde = { version = "1.0.103", default-features = false, features = ["derive"] } | ||
tg-bindings = { version = "0.17.0", path = "../../packages/bindings" } | ||
tg-bindings = { version = "0.17.1", path = "../../packages/bindings" } | ||
thiserror = "1" | ||
|
||
[dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tgrade-validator-voting" | ||
version = "0.17.0" | ||
version = "0.17.1" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Implementing tgrade-validator-voting" | ||
|
@@ -22,19 +22,19 @@ cw-utils = "1.0.1" | |
cw2 = "1.0.0" | ||
schemars = "0.8.1" | ||
serde = { version = "1", default-features = false, features = ["derive"] } | ||
tg-bindings = { path = "../../packages/bindings", version = "0.17.0" } | ||
tg-utils = { path = "../../packages/utils", version = "0.17.0" } | ||
tg-voting-contract = { version = "0.17.0", path = "../../packages/voting-contract" } | ||
tg3 = { path = "../../packages/tg3", version = "0.17.0" } | ||
tg-bindings = { path = "../../packages/bindings", version = "0.17.1" } | ||
tg-utils = { path = "../../packages/utils", version = "0.17.1" } | ||
tg-voting-contract = { version = "0.17.1", path = "../../packages/voting-contract" } | ||
tg3 = { path = "../../packages/tg3", version = "0.17.1" } | ||
thiserror = "1" | ||
|
||
[dev-dependencies] | ||
anyhow = "1" | ||
cosmwasm-schema = "1.1.9" | ||
cw-multi-test = "0.16.2" | ||
cw-storage-plus = "1.0.1" | ||
tg-bindings-test = { version = "0.17.0", path = "../../packages/bindings-test" } | ||
tg-utils = { version = "0.17.0", path = "../../packages/utils" } | ||
tg-voting-contract = { version = "0.17.0", path = "../../packages/voting-contract" } | ||
tg4 = { path = "../../packages/tg4", version = "0.17.0" } | ||
tg4-engagement = { path = "../tg4-engagement", version = "0.17.0", features = ["library"] } | ||
tg-bindings-test = { version = "0.17.1", path = "../../packages/bindings-test" } | ||
tg-utils = { version = "0.17.1", path = "../../packages/utils" } | ||
tg-voting-contract = { version = "0.17.1", path = "../../packages/voting-contract" } | ||
tg4 = { path = "../../packages/tg4", version = "0.17.1" } | ||
tg4-engagement = { path = "../tg4-engagement", version = "0.17.1", features = ["library"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tgrade-valset" | ||
version = "0.17.0" | ||
version = "0.17.1" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Control the validator set based on membership of trusted tg4 contract" | ||
|
@@ -35,9 +35,9 @@ schemars = "0.8" | |
semver = "1" | ||
serde = { version = "1.0.103", default-features = false, features = ["derive"] } | ||
thiserror = "1.0.21" | ||
tg4 = { path = "../../packages/tg4", version = "0.17.0" } | ||
tg-bindings = { version = "0.17.0", path = "../../packages/bindings" } | ||
tg-utils = { version = "0.17.0", path = "../../packages/utils" } | ||
tg4 = { path = "../../packages/tg4", version = "0.17.1" } | ||
tg-bindings = { version = "0.17.1", path = "../../packages/bindings" } | ||
tg-utils = { version = "0.17.1", path = "../../packages/utils" } | ||
|
||
# For integration tests ("integration" feature) | ||
bech32 = { version = "0.8.1", optional = true } | ||
|
@@ -49,7 +49,7 @@ assert_matches = "1.5" | |
cosmwasm-schema = "1.1.9" | ||
cw-multi-test = "0.16.2" | ||
derivative = "2" | ||
tg4-engagement = { path = "../tg4-engagement", version = "0.17.0" } | ||
tg4-stake = { path = "../tg4-stake", version = "0.17.0" } | ||
tg4-engagement = { path = "../tg4-engagement", version = "0.17.1" } | ||
tg4-stake = { path = "../tg4-stake", version = "0.17.1" } | ||
# we enable multitest feature only for tests | ||
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.17.0" } | ||
tg-bindings-test = { path = "../../packages/bindings-test", version = "0.17.1" } |
Oops, something went wrong.