-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump `spec_version` to `00_01_00` This kinda matches the version we'll use for releases * Bump TOML versions to `0.1.0-rc.1` * Bump metadata * Add some `CHANGELOG` entries * TaploFmt
- Loading branch information
Showing
20 changed files
with
83 additions
and
71 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 ="entropy-client" | ||
version ="0.0.12" | ||
version ="0.1.0-rc.1" | ||
edition ="2021" | ||
authors =['Entropy Cryptography <[email protected]>'] | ||
homepage ='https://entropy.xyz/' | ||
|
@@ -11,7 +11,7 @@ repository ='https://github.com/entropyxyz/entropy-core' | |
[dependencies] | ||
sha3 ="0.10.8" | ||
serde ={ version="1.0", default-features=false, features=["derive"] } | ||
entropy-shared={ version="0.0.12", path="../shared", default-features=false } | ||
entropy-shared={ version="0.1.0-rc.1", path="../shared", default-features=false } | ||
subxt ={ version="0.35.3", default-features=false, features=["jsonrpsee"] } | ||
num ="0.4.3" | ||
thiserror ="1.0.60" | ||
|
@@ -24,7 +24,7 @@ blake2 ={ version="0.10.4", optional=true } | |
rand_core ={ version="0.6.4", optional=true } | ||
serde_json ={ version="1.0", optional=true } | ||
x25519-dalek ={ version="2.0.1", features=["static_secrets"], optional=true } | ||
entropy-protocol={ version="0.0.12", path="../protocol", optional=true, default-features=false } | ||
entropy-protocol={ version="0.1.0-rc.1", path="../protocol", optional=true, default-features=false } | ||
reqwest ={ version="0.12.4", features=["json", "stream"], optional=true } | ||
base64 ={ version="0.22.0", optional=true } | ||
synedrion ={ version="0.1", optional=true } | ||
|
Binary file not shown.
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,7 +1,7 @@ | ||
[package] | ||
name ="entropy-kvdb" | ||
description="Encrypted key-value database for the Entropy Theshold Signing Server" | ||
version ="0.0.12" | ||
version ="0.1.0-rc.1" | ||
authors =['Entropy Cryptography <[email protected]>'] | ||
homepage ='https://entropy.xyz/' | ||
license ='AGPL-3.0-or-later' | ||
|
@@ -32,7 +32,7 @@ tracing={ version="0.1", default-features=false } | |
# Misc | ||
sled ="0.34.7" | ||
bincode ="1.3.3" | ||
entropy-protocol={ version="0.0.12", path="../protocol" } | ||
entropy-protocol={ version="0.1.0-rc.1", path="../protocol" } | ||
|
||
[dev-dependencies] | ||
serial_test="3.1.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 ='entropy-protocol' | ||
version ='0.0.12' | ||
version ='0.1.0-rc.1' | ||
authors =['Entropy Cryptography <[email protected]>'] | ||
description="Entropy Signing and DKG protocol execution and transport logic" | ||
homepage ='https://entropy.xyz/' | ||
|
@@ -10,7 +10,7 @@ edition ='2021' | |
|
||
[dependencies] | ||
async-trait ="0.1.80" | ||
entropy-shared ={ version="0.0.12", path="../shared", default-features=false } | ||
entropy-shared ={ version="0.1.0-rc.1", path="../shared", default-features=false } | ||
synedrion ="0.1" | ||
serde ={ version="1.0", features=["derive"], default-features=false } | ||
subxt ={ version="0.35.3", default-features=false } | ||
|
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,7 +1,7 @@ | ||
[package] | ||
name ="entropy-shared" | ||
description="Shared types used by the Entropy chain node and Entropy Threshold Signing Server" | ||
version ="0.0.12" | ||
version ="0.1.0-rc.1" | ||
authors =['Entropy Cryptography <[email protected]>'] | ||
homepage ='https://entropy.xyz/' | ||
license ='AGPL-3.0-or-later' | ||
|
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,16 +1,16 @@ | ||
[package] | ||
name ="entropy-test-cli" | ||
description="Simple command line interface client for testing Entropy" | ||
version ='0.0.12' | ||
version ='0.1.0-rc.1' | ||
authors =['Entropy Cryptography <[email protected]>'] | ||
homepage ='https://entropy.xyz/' | ||
license ='AGPL-3.0-or-later' | ||
repository ='https://github.com/entropyxyz/entropy-core' | ||
edition ='2021' | ||
|
||
[dependencies] | ||
entropy-testing-utils={ version="0.0.12", path="../testing-utils" } | ||
entropy-client ={ version="0.0.12", path="../client" } | ||
entropy-testing-utils={ version="0.1.0-rc.1", path="../testing-utils" } | ||
entropy-client ={ version="0.1.0-rc.1", path="../client" } | ||
clap ={ version="4.4.6", features=["derive"] } | ||
colored ="2.0.4" | ||
subxt ="0.35.3" | ||
|
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,7 +1,7 @@ | ||
[package] | ||
name ="entropy-testing-utils" | ||
description="Utiliites for testing the Entropy Threshold Signature Server" | ||
version ='0.0.12' | ||
version ='0.1.0-rc.1' | ||
authors =['Entropy Cryptography <[email protected]>'] | ||
homepage ='https://entropy.xyz/' | ||
license ='AGPL-3.0-or-later' | ||
|
@@ -19,10 +19,10 @@ lazy_static ="1.4.0" | |
hex-literal ="0.4.1" | ||
tokio ={ version="1.36", features=["macros", "fs", "rt-multi-thread", "io-util", "process"] } | ||
axum ={ version="0.7.5" } | ||
entropy-shared ={ version="0.0.12", path="../shared" } | ||
entropy-kvdb ={ version="0.0.12", path="../kvdb", default-features=false } | ||
entropy-tss ={ version="0.0.12", path="../threshold-signature-server" } | ||
entropy-protocol ={ version="0.0.12", path="../protocol" } | ||
entropy-shared ={ version="0.1.0-rc.1", path="../shared" } | ||
entropy-kvdb ={ version="0.1.0-rc.1", path="../kvdb", default-features=false } | ||
entropy-tss ={ version="0.1.0-rc.1", path="../threshold-signature-server" } | ||
entropy-protocol ={ version="0.1.0-rc.1", path="../protocol" } | ||
synedrion ="0.1" | ||
hex ="0.4.3" | ||
rand_core ="0.6.4" | ||
|
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 ="entropy-tss" | ||
version ="0.0.12" | ||
version ="0.1.0-rc.1" | ||
authors =['Entropy Cryptography <[email protected]>'] | ||
homepage ='https://entropy.xyz/' | ||
description='Entropy threshold signature scheme (TSS) server' | ||
|
@@ -38,10 +38,12 @@ parity-scale-codec="3.6.12" | |
sp-core ={ version="31.0.0", default-features=false } | ||
|
||
# Entropy | ||
entropy-shared ={ version="0.0.12", path="../shared" } | ||
entropy-kvdb ={ version="0.0.12", path="../kvdb", default-features=false } | ||
entropy-protocol={ version="0.0.12", path="../protocol", features=["server"] } | ||
entropy-client ={ version="0.0.12", path="../client", default-features=false, features=["native"] } | ||
entropy-shared={ version="0.1.0-rc.1", path="../shared" } | ||
entropy-kvdb={ version="0.1.0-rc.1", path="../kvdb", default-features=false } | ||
entropy-protocol={ version="0.1.0-rc.1", path="../protocol", features=["server"] } | ||
entropy-client={ version="0.1.0-rc.1", path="../client", default-features=false, features=[ | ||
"native", | ||
] } | ||
|
||
# Programs | ||
entropy-programs-runtime="0.10.0" | ||
|
@@ -70,14 +72,14 @@ sha2 ="0.10.8" | |
hkdf ="0.12.4" | ||
|
||
[dev-dependencies] | ||
entropy-testing-utils={ version="0.0.12", path="../testing-utils" } | ||
entropy-testing-utils={ version="0.1.0-rc.1", path="../testing-utils" } | ||
serial_test ="3.1.1" | ||
hex-literal ="0.4.1" | ||
project-root ="0.2.2" | ||
sp-keyring ="34.0.0" | ||
more-asserts ="0.3.1" | ||
lazy_static ="1.4.0" | ||
entropy-protocol ={ version="0.0.12", path="../protocol", features=["unsafe"] } | ||
entropy-protocol ={ version="0.1.0-rc.1", path="../protocol", features=["unsafe"] } | ||
blake3 ="1.5.1" | ||
ethers-core ="2.0.14" | ||
schnorrkel ={ version="0.11.4", default-features=false, features=["std"] } | ||
|
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 ='entropy' | ||
version ='0.0.12' | ||
version ='0.1.0-rc.1' | ||
description="Entropy substrate node" | ||
authors =['Entropy Cryptography <[email protected]>'] | ||
homepage ='https://entropy.xyz/' | ||
|
@@ -90,12 +90,12 @@ pallet-transaction-payment ={ version="29.0.0" } | |
pallet-transaction-payment-rpc={ version="31.0.0" } | ||
|
||
# Entropy Dependencies | ||
entropy-runtime={ version="0.0.12", path="../../runtime" } | ||
entropy-shared={ version="0.0.12", path="../../crates/shared", default-features=false, features=[ | ||
entropy-runtime={ version="0.1.0-rc.1", path="../../runtime" } | ||
entropy-shared={ version="0.1.0-rc.1", path="../../crates/shared", default-features=false, features=[ | ||
"wasm-no-std", | ||
] } | ||
pallet-registry={ version="0.0.12", path="../../pallets/registry" } | ||
pallet-staking-extension={ version="0.0.12", path="../../pallets/staking" } | ||
pallet-registry={ version="0.1.0-rc.1", path="../../pallets/registry" } | ||
pallet-staking-extension={ version="0.1.0-rc.1", path="../../pallets/staking" } | ||
project-root="0.2.2" | ||
|
||
[build-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 ="pallet-parameters" | ||
version ='0.0.12' | ||
version ='0.1.0-rc.1' | ||
authors =['Entropy Cryptography <[email protected]>'] | ||
homepage ='https://entropy.xyz/' | ||
license ='AGPL-3.0-or-later' | ||
|
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 ='pallet-programs' | ||
version ='0.0.12' | ||
version ='0.1.0-rc.1' | ||
authors =['Entropy Cryptography <[email protected]>'] | ||
homepage ='https://entropy.xyz/' | ||
license ='AGPL-3.0-or-later' | ||
|
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 ='pallet-propagation' | ||
version ='0.0.12' | ||
version ='0.1.0-rc.1' | ||
authors =['Entropy Cryptography <[email protected]>'] | ||
homepage ='https://entropy.xyz/' | ||
license ='AGPL-3.0-or-later' | ||
|
@@ -26,12 +26,12 @@ sp-io ={ version="31.0.0", default-features=false } | |
sp-runtime ={ version="32.0.0", default-features=false } | ||
sp-staking ={ version="27.0.0", default-features=false } | ||
|
||
entropy-shared={ version="0.0.12", path="../../crates/shared", default-features=false, features=[ | ||
entropy-shared={ version="0.1.0-rc.1", path="../../crates/shared", default-features=false, features=[ | ||
"wasm-no-std", | ||
] } | ||
pallet-registry={ version="0.0.12", path="../registry", default-features=false } | ||
pallet-programs={ version="0.0.12", path="../programs", default-features=false } | ||
pallet-staking-extension={ version="0.0.12", path="../staking", default-features=false } | ||
pallet-registry={ version="0.1.0-rc.1", path="../registry", default-features=false } | ||
pallet-programs={ version="0.1.0-rc.1", path="../programs", default-features=false } | ||
pallet-staking-extension={ version="0.1.0-rc.1", path="../staking", default-features=false } | ||
|
||
[dev-dependencies] | ||
parking_lot="0.12.2" | ||
|
Oops, something went wrong.