-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release v0.0.10
#605
Release v0.0.10
#605
Changes from all commits
0f89576
9422dca
b8cf290
e283b2e
24160d8
5ea6e14
1bc2a1c
1c6b46c
b27143e
0f6ace0
97c277a
4c2acdd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name ="entropy-testing-utils" | ||
version ='0.0.9' | ||
version ='0.0.10' | ||
authors =['Entropy Cryptography <[email protected]>'] | ||
homepage ='https://entropy.xyz/' | ||
license ='AGPL-3.0-or-later' | ||
|
@@ -9,7 +9,7 @@ edition ='2021' | |
publish =false | ||
|
||
[dependencies] | ||
subxt ={ package="subxt", git="https://github.com/paritytech/subxt.git", tag="v0.32.1" } | ||
subxt ={ version="0.32.1" } | ||
sp-keyring ="24.0.0" | ||
project-root ="0.2.2" | ||
sp-core ={ version="21.0.0", default-features=false } | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ axum ={ version="0.6.18", features=["ws"] } | |
axum-macros="0.3.7" | ||
|
||
# Substrate | ||
subxt ={ package="subxt", git="https://github.com/paritytech/subxt.git", tag="v0.32.1" } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not strictly related to this PR, but if moving from git dependencies to crates.io dependencies is because of wanting to be able to publish to crates.io ourselves: we have There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Actually that's a good point. Most packages right now should be in a publishable state. For the TSS server I think the only other thing we need here is for Jake to publish Programs to crates. We can totally aim to do that for this release. Wdyt @jakehemmerle @JesseAbram There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Talked to Jake, gonna do this in the next release |
||
subxt ={ version="0.32.1" } | ||
parity-scale-codec="3.4.0" | ||
sp-core ={ version="21.0.0", default-features=false } | ||
|
||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It this metadata re-build relating to #598 or is it something to do with doing the benchmarks here? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It has to do with the changes to the |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name ='entropy' | ||
version ='0.0.9' | ||
version ='0.0.10' | ||
authors =['Entropy Cryptography <[email protected]>'] | ||
homepage ='https://entropy.xyz/' | ||
license ='AGPL-3.0-or-later' | ||
|
@@ -91,11 +91,11 @@ pallet-transaction-payment ={ version="25.0.0" } | |
pallet-transaction-payment-rpc ={ version="27.0.0" } | ||
|
||
# Entropy Dependencies | ||
entropy-runtime ={ version="0.0.9", path="../../runtime" } | ||
entropy-runtime ={ version="0.0.10", path="../../runtime" } | ||
entropy-shared ={ path="../../crates/shared", default-features=false, features=["wasm-no-std"] } | ||
pallet-free-tx ={ version="0.0.9", path="../../pallets/free-tx" } | ||
pallet-relayer ={ version="0.0.9", path="../../pallets/relayer" } | ||
pallet-staking-extension={ version="0.0.9", path="../../pallets/staking" } | ||
pallet-free-tx ={ version="0.0.10", path="../../pallets/free-tx" } | ||
pallet-relayer ={ version="0.0.10", path="../../pallets/relayer" } | ||
pallet-staking-extension={ version="0.0.10", path="../../pallets/staking" } | ||
|
||
[build-dependencies] | ||
clap ={ version="4.2.5", optional=true } | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name ='pallet-free-tx' | ||
version ='0.0.9' | ||
version ='0.0.10' | ||
authors =['Entropy Cryptography <[email protected]>'] | ||
homepage ='https://entropy.xyz/' | ||
license ='AGPL-3.0-or-later' | ||
|
@@ -34,8 +34,8 @@ sp-io ={ version="27.0.0", default-features=false } | |
sp-npos-elections ={ version="23.0.0", default-features=false } | ||
sp-tracing ={ version="14.0.0", default-features=false } | ||
|
||
pallet-staking-extension={ version="0.0.9", path="../staking", default-features=false } | ||
pallet-relayer ={ version="0.0.9", path="../relayer", default-features=false } | ||
pallet-staking-extension={ version="0.0.10", path="../staking", default-features=false } | ||
pallet-relayer ={ version="0.0.10", path="../relayer", default-features=false } | ||
|
||
[features] | ||
default=["std"] | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name ='pallet-programs' | ||
version ='0.0.9' | ||
version ='0.0.10' | ||
authors =['Entropy Cryptography <[email protected]>'] | ||
homepage ='https://entropy.xyz/' | ||
license ='AGPL-3.0-or-later' | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name ='pallet-propagation' | ||
version ='0.0.9' | ||
version ='0.0.10' | ||
authors =['Entropy Cryptography <[email protected]>'] | ||
homepage ='https://entropy.xyz/' | ||
license ='AGPL-3.0-or-later' | ||
|
@@ -28,9 +28,9 @@ sp-runtime ={ version="28.0.0", default-features=false } | |
sp-staking ={ version="23.0.0", default-features=false } | ||
|
||
entropy-shared ={ path="../../crates/shared", default-features=false, features=["wasm-no-std"] } | ||
pallet-relayer ={ version="0.0.9", path="../relayer", default-features=false } | ||
pallet-programs ={ version="0.0.9", path="../programs", default-features=false } | ||
pallet-staking-extension={ version="0.0.9", path="../staking", default-features=false } | ||
pallet-relayer ={ version="0.0.10", path="../relayer", default-features=false } | ||
pallet-programs ={ version="0.0.10", path="../programs", default-features=false } | ||
pallet-staking-extension={ version="0.0.10", path="../staking", default-features=false } | ||
|
||
[dev-dependencies] | ||
parking_lot="0.11.2" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name ='pallet-relayer' | ||
version ='0.0.9' | ||
version ='0.0.10' | ||
authors =['Entropy Cryptography <[email protected]>'] | ||
homepage ='https://entropy.xyz/' | ||
license ='AGPL-3.0-or-later' | ||
|
@@ -27,8 +27,8 @@ sp-runtime ={ version="28.0.0", default-features=false } | |
sp-std ={ version="12.0.0", default-features=false } | ||
|
||
entropy-shared ={ path="../../crates/shared", features=["wasm-no-std"], default-features=false } | ||
pallet-programs ={ version="0.0.9", path="../programs", default-features=false } | ||
pallet-staking-extension={ version="0.0.9", path="../staking", default-features=false } | ||
pallet-programs ={ version="0.0.10", path="../programs", default-features=false } | ||
pallet-staking-extension={ version="0.0.10", path="../staking", default-features=false } | ||
|
||
[dev-dependencies] | ||
frame-election-provider-support={ version="25.0.0", default-features=false } | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name ='pallet-slashing' | ||
version ='0.0.9' | ||
version ='0.0.10' | ||
authors =['Entropy Cryptography <[email protected]>'] | ||
homepage ='https://entropy.xyz/' | ||
license ='AGPL-3.0-or-later' | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name ='pallet-staking-extension' | ||
version ='0.0.9' | ||
version ='0.0.10' | ||
authors =['Entropy Cryptography <[email protected]>'] | ||
homepage ='https://entropy.xyz/' | ||
license ='AGPL-3.0-or-later' | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name ="pallet-transaction-pause" | ||
version ='0.0.9' | ||
version ='0.0.10' | ||
authors =['Entropy Cryptography <[email protected]>'] | ||
homepage ='https://entropy.xyz/' | ||
license ='AGPL-3.0-or-later' | ||
|
@@ -25,7 +25,7 @@ pallet-balances={ version="25.0.0" } | |
sp-core ={ version="25.0.0" } | ||
sp-io ={ version="27.0.0" } | ||
|
||
pallet-programs={ version="0.0.9", default-features=false, path="../programs" } | ||
pallet-programs={ version="0.0.10", default-features=false, path="../programs" } | ||
|
||
[features] | ||
default=["std"] | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Jesse and Peg, I removed a couple things in here because while the did break the API between PRs, they didn't break something that existed in
v0.0.9
.