Skip to content

Commit

Permalink
Merge pull request #3393 from dusk-network/rusk-release-1.0.1
Browse files Browse the repository at this point in the history
rusk: release `1.0.1`
  • Loading branch information
herr-seppia authored Jan 20, 2025
2 parents 072b6db + ba61df7 commit 2e12c7b
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
7 changes: 6 additions & 1 deletion rusk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [1.0.1] - 2025-01-20

### Added

- Add `Rusk-Version-Strict` header for version match
- Add support for `cargo install`

### Changed

- Change `check_rusk_version` to ignore pre-release by default
- Increase archive channel capacity from 1000 to 10000 [#3359]
- Change `/static/drivers/wallet-core.wasm` to embed version `1.0.0`

## [1.0.0] - 2025-01-05

Expand Down Expand Up @@ -311,7 +315,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/rusk-1.0.0...HEAD
[unreleased]: https://github.com/dusk-network/rusk/compare/rusk-1.0.1...HEAD
[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
[0.8.0]: https://github.com/dusk-network/rusk/compare/v0.7.0...v0.8.0
[0.7.0]: https://github.com/dusk-network/rusk/compare/v0.6.0...v0.7.0
Expand Down
11 changes: 9 additions & 2 deletions rusk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
[package]
name = "rusk"
version = "1.0.1-dev"
name = "dusk-rusk"
version = "1.0.2-dev"
edition = "2021"
autobins = false

description = "Rusk is the Dusk Network node implementation"
repository = "https://github.com/dusk-network/rusk"
categories = ["cryptography", "cryptography::cryptocurrencies"]
keywords = ["dusk", "cryptocurrency", "blockchain", "node"]
license = "MPL-2.0"


[lib]
name = "rusk"
path = "src/lib/lib.rs"
Expand Down
Binary file added rusk/src/assets/wallet_core-1.0.0.wasm
Binary file not shown.
4 changes: 1 addition & 3 deletions rusk/src/lib/http.rs
Original file line number Diff line number Diff line change
Expand Up @@ -820,9 +820,7 @@ where

#[cfg(feature = "http-wasm")]
if path == "/static/drivers/wallet-core.wasm" {
let wallet_wasm = include_bytes!(
"../../../target/wasm32-unknown-unknown/release/dusk_wallet_core.wasm"
);
let wallet_wasm = include_bytes!("../assets/wallet_core-1.0.0.wasm");
let mut response =
Response::new(Full::from(wallet_wasm.to_vec()).into());
response.headers_mut().append(
Expand Down

0 comments on commit 2e12c7b

Please sign in to comment.