From 12369f45e4f3b239051c05af7d9a333706fdf9eb Mon Sep 17 00:00:00 2001 From: Audun Halland Date: Wed, 27 Mar 2024 19:37:23 +0100 Subject: [PATCH] chore: release 0.7.0 --- CHANGELOG.md | 2 ++ Cargo.toml | 4 ++-- entrait_macros/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 814028d..f32543c 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.7.0] - 2024-03-27 ### Changed - Unimock bumped to 0.6. - Reworked async support. Rust now has native support for async functions in traits, which means that entrait doesn't need to interact with this in a hacky way anymore. diff --git a/Cargo.toml b/Cargo.toml index 8d71c4e..b249a6a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "entrait" -version = "0.7.0-dev" +version = "0.7.0" authors = ["Audun Halland "] edition = "2021" rust-version = "1.75" @@ -15,7 +15,7 @@ default = [] unimock = ["dep:unimock"] [dependencies] -entrait_macros = { path = "entrait_macros", version = "0.7.0-dev" } +entrait_macros = { path = "entrait_macros", version = "0.7.0" } implementation = "0.1" unimock = { version = "0.6.2", optional = true } diff --git a/entrait_macros/Cargo.toml b/entrait_macros/Cargo.toml index 86d1df6..16267d3 100644 --- a/entrait_macros/Cargo.toml +++ b/entrait_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "entrait_macros" -version = "0.7.0-dev" +version = "0.7.0" authors = ["Audun Halland "] edition = "2021" rust-version = "1.60"