diff --git a/CHANGELOG.md b/CHANGELOG.md index d6eec7d..462643a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## Unreleased + +## [0.6.0] - 2024-03-25 ### Changed - Unimock now supports very flexible argument mutation, instead of one hard-coded parameter. To achieve this, the `answers` API had to be redesigned with a new signature based on a `dyn Fn`. diff --git a/Cargo.toml b/Cargo.toml index 5ccdf5d..0239074 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unimock" -version = "0.6.0-rc1" +version = "0.6.0" authors = ["Audun Halland "] edition = "2021" rust-version = "1.70" @@ -26,7 +26,7 @@ unstable-doc-cfg = [] critical-section = ["once_cell/critical-section"] [dependencies] -unimock_macros = { path = "unimock_macros", version = "0.6.0-rc1" } +unimock_macros = { path = "unimock_macros", version = "0.6.0" } once_cell = { version = "1.17", default-features = false } polonius-the-crab = "0.4" pretty_assertions = { version = "1.3", optional = true } diff --git a/unimock_macros/Cargo.toml b/unimock_macros/Cargo.toml index 60709f6..13d2171 100644 --- a/unimock_macros/Cargo.toml +++ b/unimock_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unimock_macros" -version = "0.6.0-rc1" +version = "0.6.0" authors = ["Audun Halland "] edition = "2021" license = "MIT"