Skip to content
This repository has been archived by the owner on Dec 16, 2024. It is now read-only.

Release 0.22.0 #241

Merged
merged 2 commits into from
Feb 28, 2024
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
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.22.0] - 2024-2-28

### Changed

- Change `REQUIRED_RUSK_VERSION` to `0.7.0`
- Update unclear error message [#235]
- Change provisioner key password prompt message [#238]

Expand Down Expand Up @@ -575,7 +578,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- Releases -->

[unreleased]: https://github.com/dusk-network/wallet-cli/compare/v0.21.0...HEAD
[unreleased]: https://github.com/dusk-network/wallet-cli/compare/v0.22.0...HEAD
[0.22.0]: https://github.com/dusk-network/wallet-cli/compare/v0.21.0...v0.22.0
[0.21.0]: https://github.com/dusk-network/wallet-cli/compare/v0.20.1...v0.21.0
[0.20.1]: https://github.com/dusk-network/wallet-cli/compare/v0.20.0...v0.20.1
[0.20.0]: https://github.com/dusk-network/wallet-cli/compare/v0.19.1...v0.20.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dusk-wallet"
version = "0.21.0"
version = "0.22.0"
edition = "2021"
autobins = false
description = "A library providing functionalities to create wallets compatible with Dusk Network"
Expand Down
2 changes: 1 addition & 1 deletion src/rusk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use rkyv::Archive;
use crate::Error;

/// Supported Rusk version
const REQUIRED_RUSK_VERSION: &str = "0.7.0-rc";
const REQUIRED_RUSK_VERSION: &str = "0.7.0";

#[derive(Debug)]
/// RuskRequesst according to the rusk event system
Expand Down
Loading