From 615310151643c43f280379e802980afd70e4be8b Mon Sep 17 00:00:00 2001 From: Audun Halland Date: Mon, 8 Apr 2024 04:04:39 +0200 Subject: [PATCH] chore: release 0.6.5 --- CHANGELOG.md | 2 ++ Cargo.toml | 4 ++-- unimock_macros/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba4d304..594e65a 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.5] - 2024-04-08 ### Added - Support for mocking [embedded-hal](https://docs.rs/embedded-hal/latest/embedded_hal/) ([#55](https://github.com/audunhalland/unimock/pull/55)). ### Fixed diff --git a/Cargo.toml b/Cargo.toml index 9d1e4da..f05df07 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unimock" -version = "0.6.4" +version = "0.6.5" authors = ["Audun Halland "] edition = "2021" rust-version = "1.70" @@ -28,7 +28,7 @@ nightly-tests = [] unstable-doc-cfg = [] [dependencies] -unimock_macros = { path = "unimock_macros", version = "0.6.4" } +unimock_macros = { path = "unimock_macros", version = "0.6.5" } 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 eb8523d..b677424 100644 --- a/unimock_macros/Cargo.toml +++ b/unimock_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unimock_macros" -version = "0.6.4" +version = "0.6.5" authors = ["Audun Halland "] edition = "2021" license = "MIT"