Skip to content

Commit

Permalink
Merge pull request #3411 from dusk-network/update-workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
herr-seppia authored Jan 23, 2025
2 parents db93089 + 5e4afc7 commit 938c520
Show file tree
Hide file tree
Showing 21 changed files with 160 additions and 114 deletions.
152 changes: 76 additions & 76 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.0"
# dusk-consensus = { version = "1.0.0", path = "./consensus/" }
dusk-core = "0.1.0"
#dusk-core = { version = "0.1.0", path = "./core/" }
dusk-vm = "0.1.0"
# dusk-vm = { version = "0.1.0", path = "./vm/" }
node = { version = "1.0.0", package = "dusk-node" }
# node = { version = "1.0.0", path = "./node/", package = "dusk-node" }
node-data = { version = "1.0.0", package = "dusk-node-data" }
# node-data = { version = "1.0.0", path = "./node-data/", package = "dusk-node-data" }
rusk-profile = "1.0.0"
#rusk-profile = { version = "1.0.1-dev", path = "./rusk-profile/" }
rusk-prover = "1.0.0"
# rusk-prover = { version = "1.0.1-dec", path = "./rusk-prover/" }
rusk-recovery = "1.0.1"
# rusk-recovery = { version = "1.0.0", path = "./rusk-recovery/" }
wallet-core = { version = "1.0.0", package = "dusk-wallet-core" }
# wallet-core = { version = "1.0.0", 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.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.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 dependencies outside the workspace
bls12_381-bls = { version = "0.4", default-features = false }
Expand Down
5 changes: 4 additions & 1 deletion consensus/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

[1.0.1] - 2025-01-23

## [1.0.0] - 2025-01-16

- First `dusk-consensus` release


[Unreleased]: https://github.com/dusk-network/rusk/compare/consensus-1.0.0...HEAD
[Unreleased]: https://github.com/dusk-network/rusk/compare/dusk-consensus-1.0.1...HEAD
[1.0.1]: https://github.com/dusk-network/rusk/compare/consensus-1.0.0...dusk-consensus-1.0.1
[0.1.0]: https://github.com/dusk-network/rusk/tree/consensus-1.0.0

2 changes: 1 addition & 1 deletion consensus/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dusk-consensus"
version = "1.0.1-dev"
version = "1.0.2-alpha.1"
edition = "2021"
repository = "https://github.com/dusk-network/rusk"
description = "Implementation of Dusk Succinct Attestation consensus protocol"
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.0.0] - 2025-01-23

### Changed

- Change dependency declaration to not require strict equal [#3405]
Expand All @@ -21,5 +23,6 @@ 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/dusk-core-0.1.0...HEAD
[Unreleased]: https://github.com/dusk-network/rusk/compare/dusk-core-1.0.0...HEAD
[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 = "0.1.1-dev"
version = "1.0.1-alpha.1"
edition = "2021"

description = "Types used for interacting with Dusk's transfer and stake contracts."
Expand Down
7 changes: 5 additions & 2 deletions 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.0.1] - 2025-01-23

### Changed

- Change dependency declaration to not require strict equal [#3405]
Expand All @@ -20,5 +22,6 @@ 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/dusk-node-data-1.0.0...HEAD
[0.1.0]: https://github.com/dusk-network/rusk/tree/dusk-node-data-1.0.0
[Unreleased]: https://github.com/dusk-network/rusk/compare/dusk-node-data-1.0.1...HEAD
[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.1-dev"
version = "1.0.2-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.0.1] - 2025-01-23

### Changed

- Change dependency declaration to not require strict equal [#3405]
Expand All @@ -18,5 +20,6 @@ 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/node-1.0.0...HEAD
[Unreleased]: https://github.com/dusk-network/rusk/compare/dusk-node-1.0.1...HEAD
[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.1-dev"
version = "1.0.2-alpha.1"
edition = "2021"
autobins = false
repository = "https://github.com/dusk-network/rusk"
Expand Down
19 changes: 19 additions & 0 deletions release.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
push = true
tag = true
tag-name = "{{prefix}}{{version}}"
publish = false
pre-release-commit-message = "{{crate_name}}: release `{{version}}`"
tag-message = "{{crate_name}}: tag {{version}}"
consolidate-commits = false
pre-release-replacements = [
# replace unreleased with version number and date
{ file = "CHANGELOG.md", search = "## \\[Unreleased\\]", replace = "## [Unreleased]\n\n## [{{version}}] - {{date}}", exactly = 1 },
# Add temporary placeholder for next release
{ file = "CHANGELOG.md", search = "\\[Unreleased\\]:", replace = "<!-- Next release -->\n[Unreleased]:", exactly = 1 },
# Update the version number in the comparison ling
{ file = "CHANGELOG.md", search = "Unreleased\\]:", replace = "{{version}}]:", exactly = 1 },
# Update the tag name to compare with
{ file = "CHANGELOG.md", search = "\\.\\.\\.HEAD", replace = "...{{tag_name}}", exactly = 1 },
# Replace temporary placeholder with the unreleased comparison link
{ file = "CHANGELOG.md", search = "<!-- Next release -->", replace = "[Unreleased]: https://github.com/dusk-network/rusk/compare/{{tag_name}}...HEAD", exactly = 1 },
]
5 changes: 4 additions & 1 deletion rusk-profile/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.1] - 2025-01-23

### Changed

- Change dependency declaration to not require strict equal [#3405]
Expand All @@ -20,5 +22,6 @@ 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-profile-1.0.0...HEAD
[Unreleased]: https://github.com/dusk-network/rusk/compare/rusk-profile-1.0.1...HEAD
[1.0.1]: https://github.com/dusk-network/rusk/compare/rusk-profile-1.0.0...rusk-profile-1.0.1
[0.1.0]: https://github.com/dusk-network/rusk/tree/rusk-profile-1.0.0
2 changes: 1 addition & 1 deletion rusk-profile/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rusk-profile"
version = "1.0.1-dev"
version = "1.0.2-alpha.1"
edition = "2021"
autobins = false

Expand Down
7 changes: 5 additions & 2 deletions rusk-prover/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.1] - 2025-01-23

### Changed

- Change dependency declaration to not require strict equal [#3405]
Expand All @@ -20,5 +22,6 @@ 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.0...HEAD
[0.1.0]: https://github.com/dusk-network/rusk/tree/rusk-prover-1.0.0
[Unreleased]: https://github.com/dusk-network/rusk/compare/rusk-prover-1.0.1...HEAD
[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.1-dev"
version = "1.0.2-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.2] - 2025-01-23

### Changed

- Change dependency declaration to not require strict equal [#3405]
Expand All @@ -18,5 +20,6 @@ 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-recovery-1.0.1...HEAD
[Unreleased]: https://github.com/dusk-network/rusk/compare/rusk-recovery-1.0.2...HEAD
[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.2-dev"
version = "1.0.3-alpha.1"
edition = "2021"
autobins = false
description = "Tool to restore Rusk to factory settings"
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.0.0] - 2025-01-23

### Changed

- Change dependency declaration to not require strict equal [#3405]
Expand All @@ -21,5 +23,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#3235]: https://github.com/dusk-network/rusk/issues/3235
[#3405]: https://github.com/dusk-network/rusk/issues/3405

[Unreleased]: https://github.com/dusk-network/rusk/compare/dusk-vm-0.1.0...HEAD
[Unreleased]: https://github.com/dusk-network/rusk/compare/dusk-vm-1.0.0...HEAD
[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 = "0.1.1-dev"
version = "1.0.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.0.1] - 2025-01-23

### Changed

- Change dependency declaration to not require strict equal [#3405]
Expand All @@ -18,5 +20,6 @@ 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/wallet-core-1.0.0...HEAD
[Unreleased]: https://github.com/dusk-network/rusk/compare/dusk-wallet-core-1.0.1...HEAD
[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.1-dev"
version = "1.0.2-alpha.1"
edition = "2021"
description = "The core functionality of the Dusk wallet"
license = "MPL-2.0"
Expand Down

0 comments on commit 938c520

Please sign in to comment.