From bdf07dc5df79a01fda83f67281579368c693c9fa Mon Sep 17 00:00:00 2001 From: Idan Arye Date: Wed, 17 Jan 2024 00:31:15 +0200 Subject: [PATCH] Bump bugfix version --- CHANGELOG.md | 2 ++ Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a6f1e287..0ce5ddad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## 0.18.1 - 2024-01-17 ### Fixed - Add `#[allow(clippy::no_effect_underscore_binding)]` to generated methods that need to destructure intermediate builder state. diff --git a/Cargo.toml b/Cargo.toml index 9d616011..ee75fa85 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "./typed-builder-macro"] [workspace.package] description = "Compile-time type-checked builder derive" -version = "0.18.0" +version = "0.18.1" authors = ["IdanArye ", "Chris Morgan "] edition = "2021" license = "MIT OR Apache-2.0" @@ -27,4 +27,4 @@ keywords.workspace = true categories.workspace = true [dependencies] -typed-builder-macro = { path = "typed-builder-macro", version = "=0.18.0" } +typed-builder-macro = { path = "typed-builder-macro", version = "=0.18.1" }