Skip to content

Commit

Permalink
Merge master
Browse files Browse the repository at this point in the history
  • Loading branch information
ameba23 committed Jul 18, 2024
2 parents d92fa61 + 45b6855 commit 464e9d0
Show file tree
Hide file tree
Showing 114 changed files with 2,999 additions and 4,994 deletions.
2 changes: 1 addition & 1 deletion .circleci/then.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:
cargo build --all-targets --release -j $(nproc)
cargo test --all-targets --release
yarn --cwd ../crates/protocol/nodejs-test test
cargo test -p entropy-tss --release -F wasm_test test_wasm
cargo test -p entropy-tss --release --features=test_helpers -F wasm_test test_wasm
no_output_timeout: 45m
build-and-release:
machine:
Expand Down
4 changes: 4 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,11 @@ target
.cargo-remote.toml
.entropy
chains

# We specifically want to include the `create-test-keyshares` crate as part of our builds.
scripts
!scripts/create-test-keyshares/

service
shell.nix

Expand Down
17 changes: 15 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
At the moment this project **does not** adhere to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased](https://github.com/entropyxyz/entropy-core/compare/release/v0.2.0-rc.1...master)
## [Unreleased](https://github.com/entropyxyz/entropy-core/compare/release/v0.2.0...master)

## [0.2.0-rc.1](https://github.com/entropyxyz/entropy-core/compare/release/v0.1.0...release/v0.2.0-rc.1) - 2024-06-24
### Added
- Jumpstart network ([#918](https://github.com/entropyxyz/entropy-core/pull/918))
- Add Signer groups and rotation ([#938](https://github.com/entropyxyz/entropy-core/pull/938))

### Breaking Changes
- In [#938](https://github.com/entropyxyz/entropy-core/pull/938), the chainspec got a couple of new
fields, `pallet_staking_extension::initial_signers`, `pallet_parameters::total_signers`, and
`pallet_parameters::threshold`, which are used to set up the initial threshold signing
configuration for the network.

## [0.2.0](https://github.com/entropyxyz/entropy-core/compare/release/v0.1.0...release/v0.2.0) - 2024-07-11

### Breaking Changes
- In [#853](https://github.com/entropyxyz/entropy-core/pull/853) the responsibility of generating a
Expand All @@ -27,6 +37,9 @@ At the moment this project **does not** adhere to
case that an unknown variant is added in the future.
- In [#900](https://github.com/entropyxyz/entropy-core/pull/900) the subgroup signer selection was
sorted to ensure a predicatble order across libraries, languages and clients.
- In [#901](https://github.com/entropyxyz/entropy-core/pull/901) the network's currency units were
changed. This resulted in a change to the existential deposit as well as balances of endowed
accounts (e.g development accounts like `//Alice`).

### Added
- JS bindings for entropy client ([#897](https://github.com/entropyxyz/entropy-core/pull/897))
Expand Down
104 changes: 68 additions & 36 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[workspace]
resolver="2"
members =['crates/*', 'node/*', 'pallets/*', 'runtime']
members =['crates/*', 'node/*', 'pallets/*', 'runtime', 'scripts/create-test-keyshares']
Loading

0 comments on commit 464e9d0

Please sign in to comment.