Skip to content
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

rusk: release 1.1.0 #3502

Merged
merged 19 commits into from
Feb 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
291 changes: 247 additions & 44 deletions Cargo.lock

Large diffs are not rendered by default.

36 changes: 18 additions & 18 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,24 +30,24 @@ resolver = "2"

[workspace.dependencies]
# Workspace internal dependencies
# dusk-consensus = "1.0.1"
dusk-consensus = { version = "1.0.2-alpha.1", path = "./consensus/" }
# dusk-core = "1.0.0"
dusk-core = { version = "1.0.1-alpha.1", path = "./core/" }
# dusk-vm = "1.0.0"
dusk-vm = { version = "1.0.1-alpha.1", path = "./vm/" }
# node = { version = "1.0.1", package = "dusk-node" }
node = { version = "1.0.2-alpha.1", path = "./node/", package = "dusk-node" }
# node-data = { version = "1.0.1", package = "dusk-node-data" }
node-data = { version = "1.0.2-alpha.1", path = "./node-data/", package = "dusk-node-data" }
# rusk-profile = "1.0.1"
rusk-profile = { version = "1.0.2-alpha.1", path = "./rusk-profile/" }
# rusk-prover = "1.0.1"
rusk-prover = { version = "1.0.2-alpha.1", path = "./rusk-prover/" }
# rusk-recovery = "1.0.2"
rusk-recovery = { version = "1.0.3-alpha.1", path = "./rusk-recovery/" }
# wallet-core = { version = "1.0.1", package = "dusk-wallet-core" }
wallet-core = { version = "1.0.2-alpha.1", path = "./wallet-core/", package = "dusk-wallet-core" }
dusk-consensus = "1.0.1"
# dusk-consensus = { version = "1.0.2-alpha.1", path = "./consensus/" }
dusk-core = "1.1.0"
# dusk-core = { version = "1.1.0", path = "./core/" }
dusk-vm = "1.1.0"
# dusk-vm = { version = "1.1.0", path = "./vm/" }
node = { version = "1.1.0", package = "dusk-node" }
# node = { version = "1.1.0", path = "./node/", package = "dusk-node" }
node-data = { version = "1.1.0", package = "dusk-node-data" }
# node-data = { version = "1.1.0", path = "./node-data/", package = "dusk-node-data" }
rusk-profile = "1.0.1"
# rusk-profile = { version = "1.0.2-alpha.1", path = "./rusk-profile/" }
rusk-prover = "1.1.0"
# rusk-prover = { version = "1.1.1-alpha.1", path = "./rusk-prover/" }
rusk-recovery = "1.0.3"
# rusk-recovery = { version = "1.0.4-alpha.1", path = "./rusk-recovery/" }
wallet-core = { version = "1.1.0", package = "dusk-wallet-core" }
# wallet-core = { version = "1.1.1-alpha.1", path = "./wallet-core/", package = "dusk-wallet-core" }

# Dusk dependencies outside the workspace
bls12_381-bls = { version = "0.5", default-features = false }
Expand Down
5 changes: 4 additions & 1 deletion core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.1.0] - 2025-02-14

### Changed

- Change `dusk_core::transfer::moonlight::Transaction::data` fn visibility to public
Expand Down Expand Up @@ -35,6 +37,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#3341]: https://github.com/dusk-network/rusk/issues/3341
[#2773]: https://github.com/dusk-network/rusk/issues/2773

[Unreleased]: https://github.com/dusk-network/rusk/compare/dusk-core-1.0.0...HEAD
[Unreleased]: https://github.com/dusk-network/rusk/compare/dusk-core-1.1.0...HEAD
[1.1.0]: https://github.com/dusk-network/rusk/compare/dusk-core-1.0.0...dusk-core-1.1.0
[1.0.0]: https://github.com/dusk-network/rusk/compare/dusk-core-0.1.0...dusk-core-1.0.0
[0.1.0]: https://github.com/dusk-network/rusk/tree/dusk-core-0.1.0
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dusk-core"
version = "1.0.1-alpha.1"
version = "1.1.1-alpha.1"
edition = "2021"

description = "Types used for interacting with Dusk's transfer and stake contracts."
Expand Down
5 changes: 4 additions & 1 deletion node-data/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.1.0] - 2025-02-14

### Added

- Add PartialEq, Eq to `BlockState` [#3359]
Expand All @@ -33,6 +35,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#3359]: https://github.com/dusk-network/rusk/issues/3359
[#3405]: https://github.com/dusk-network/rusk/issues/3405

[Unreleased]: https://github.com/dusk-network/rusk/compare/dusk-node-data-1.0.1...HEAD
[Unreleased]: https://github.com/dusk-network/rusk/compare/dusk-node-data-1.1.0...HEAD
[1.1.0]: https://github.com/dusk-network/rusk/compare/dusk-node-data-1.0.1...dusk-node-data-1.1.0
[1.0.1]: https://github.com/dusk-network/rusk/compare/dusk-node-data-1.0.0...dusk-node-data-1.0.1
[1.0.0]: https://github.com/dusk-network/rusk/tree/dusk-node-data-1.0.0
2 changes: 1 addition & 1 deletion node-data/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dusk-node-data"
version = "1.0.2-alpha.1"
version = "1.1.1-alpha.1"
edition = "2021"

description = "Types used for interacting with Dusk node."
Expand Down
5 changes: 4 additions & 1 deletion node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.1.0] - 2025-02-14

### Added

- Add `ledger_txs` to `Ledger` trait and Backend implementation [#3491]
Expand Down Expand Up @@ -39,6 +41,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#3407]: https://github.com/dusk-network/rusk/issues/3407
[#3405]: https://github.com/dusk-network/rusk/issues/3405

[Unreleased]: https://github.com/dusk-network/rusk/compare/dusk-node-1.0.1...HEAD
[Unreleased]: https://github.com/dusk-network/rusk/compare/dusk-node-1.1.0...HEAD
[1.1.0]: https://github.com/dusk-network/rusk/compare/dusk-node-1.0.1...dusk-node-1.1.0
[1.0.1]: https://github.com/dusk-network/rusk/compare/node-1.0.0...dusk-node-1.0.1
[1.0.0]: https://github.com/dusk-network/rusk/tree/node-1.0.0
2 changes: 1 addition & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dusk-node"
version = "1.0.2-alpha.1"
version = "1.1.1-alpha.1"
edition = "2021"
autobins = false
repository = "https://github.com/dusk-network/rusk"
Expand Down
17 changes: 16 additions & 1 deletion rusk-prover/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.1.0] - 2025-02-14

### Changed

- Update `bls12_381-bls` to 0.5 [#2773]
- Update `dusk-bls12_381` to 0.14 [#2773]
- Update `dusk-jubjub` to 0.15.0 [#2773]
- Update `dusk-plonk` to 0.21.0 [#2773]
- Update `dusk-poseidon` to 0.41 [#2773]
- Update `jubjub-schnorr` to 0.6 [#2773]
- Update `phoenix-circuits` to 0.6 [#2773]
- Update `phoenix-core` to 0.34.0 [#2773]
- Update `poseidon-merkle` to 0.8 [#2773]

## [1.0.1] - 2025-01-23

### Changed
Expand All @@ -22,6 +36,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<!-- Issues -->
[#3405]: https://github.com/dusk-network/rusk/issues/3405

[Unreleased]: https://github.com/dusk-network/rusk/compare/rusk-prover-1.0.1...HEAD
[Unreleased]: https://github.com/dusk-network/rusk/compare/rusk-prover-1.1.0...HEAD
[1.1.0]: https://github.com/dusk-network/rusk/compare/rusk-prover-1.0.1...rusk-prover-1.1.0
[1.0.1]: https://github.com/dusk-network/rusk/compare/rusk-prover-1.0.0...rusk-prover-1.0.1
[1.0.0]: https://github.com/dusk-network/rusk/tree/rusk-prover-1.0.0
2 changes: 1 addition & 1 deletion rusk-prover/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rusk-prover"
version = "1.0.2-alpha.1"
version = "1.1.1-alpha.1"
edition = "2021"
autobins = false

Expand Down
5 changes: 4 additions & 1 deletion rusk-recovery/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.3] - 2025-02-14

### Changed

- Change deprecated `tempdir` with `tempfile` dependency [#3407]
Expand All @@ -25,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#3407]: https://github.com/dusk-network/rusk/issues/3407
[#3405]: https://github.com/dusk-network/rusk/issues/3405

[Unreleased]: https://github.com/dusk-network/rusk/compare/rusk-recovery-1.0.2...HEAD
[Unreleased]: https://github.com/dusk-network/rusk/compare/rusk-recovery-1.0.3...HEAD
[1.0.3]: https://github.com/dusk-network/rusk/compare/rusk-recovery-1.0.2...rusk-recovery-1.0.3
[1.0.2]: https://github.com/dusk-network/rusk/compare/rusk-recovery-1.0.1...rusk-recovery-1.0.2
[1.0.1]: https://github.com/dusk-network/rusk/tree/rusk-recovery-1.0.1
2 changes: 1 addition & 1 deletion rusk-recovery/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rusk-recovery"
version = "1.0.3-alpha.1"
version = "1.0.4-alpha.1"
edition = "2021"
autobins = false
description = "Tool to restore Rusk to factory settings"
Expand Down
5 changes: 4 additions & 1 deletion rusk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.1.0] - 2025-02-14

### Added

- Add `abi::public_sender` [#3341]
Expand Down Expand Up @@ -369,7 +371,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#290]: https://github.com/dusk-network/rusk/issues/290


[Unreleased]: https://github.com/dusk-network/rusk/compare/dusk-rusk-1.0.2...HEAD
[Unreleased]: https://github.com/dusk-network/rusk/compare/dusk-rusk-1.1.0...HEAD
[1.1.0]: https://github.com/dusk-network/rusk/compare/dusk-rusk-1.0.2...dusk-rusk-1.1.0
[1.0.2]: https://github.com/dusk-network/rusk/compare/rusk-1.0.1...dusk-rusk-1.0.2
[1.0.1]: https://github.com/dusk-network/rusk/compare/rusk-1.0.0...rusk-1.0.1
[1.0.0]: https://github.com/dusk-network/rusk/compare/v0.8.0...rusk-1.0.0
Expand Down
2 changes: 1 addition & 1 deletion rusk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dusk-rusk"
version = "1.1.0-rc.2"
version = "1.1.1-alpha.1"
edition = "2021"
autobins = false

Expand Down
5 changes: 4 additions & 1 deletion vm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.1.0] - 2025-02-14

### Added

- Add `PUBLIC_SENDER` available to session [#3341]
Expand Down Expand Up @@ -35,6 +37,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#3405]: https://github.com/dusk-network/rusk/issues/3405
[#3437]: https://github.com/dusk-network/rusk/issues/3437

[Unreleased]: https://github.com/dusk-network/rusk/compare/dusk-vm-1.0.0...HEAD
[Unreleased]: https://github.com/dusk-network/rusk/compare/dusk-vm-1.1.0...HEAD
[1.1.0]: https://github.com/dusk-network/rusk/compare/dusk-vm-1.0.0...dusk-vm-1.1.0
[1.0.0]: https://github.com/dusk-network/rusk/compare/dusk-vm-0.1.0...dusk-vm-1.0.0
[0.1.0]: https://github.com/dusk-network/rusk/tree/dusk-vm-0.1.0
2 changes: 1 addition & 1 deletion vm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dusk-vm"
version = "1.0.1-alpha.1"
version = "1.1.1-alpha.1"
edition = "2021"

repository = "https://github.com/dusk-network/rusk"
Expand Down
5 changes: 4 additions & 1 deletion wallet-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.1.0] - 2025-02-14

### Changed

- Changed phoenix function to allow data to be passed to transaction [#3438]
Expand All @@ -25,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#3438]: https://github.com/dusk-network/rusk/issues/3438
[#3405]: https://github.com/dusk-network/rusk/issues/3405

[Unreleased]: https://github.com/dusk-network/rusk/compare/dusk-wallet-core-1.0.1...HEAD
[Unreleased]: https://github.com/dusk-network/rusk/compare/dusk-wallet-core-1.1.0...HEAD
[1.1.0]: https://github.com/dusk-network/rusk/compare/dusk-wallet-core-1.0.1...dusk-wallet-core-1.1.0
[1.0.1]: https://github.com/dusk-network/rusk/compare/wallet-core-1.0.0...dusk-wallet-core-1.0.1
[1.0.0]: https://github.com/dusk-network/rusk/tree/wallet-core-1.0.0
2 changes: 1 addition & 1 deletion wallet-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dusk-wallet-core"
version = "1.0.2-alpha.1"
version = "1.1.1-alpha.1"
edition = "2021"
description = "The core functionality of the Dusk wallet"
license = "MPL-2.0"
Expand Down
Loading