From f413e1d4a4b73a7880c7405d42512ac005f6b5b0 Mon Sep 17 00:00:00 2001 From: Lloyd Date: Sat, 31 Aug 2024 22:22:25 +0900 Subject: [PATCH] 0.4.3 release (#237) * 0.4.3 release * Changelog Signed-off-by: lloydmeta --- CHANGELOG.md | 3 +++ Cargo.toml | 8 ++++---- core/Cargo.toml | 6 +++--- derives/Cargo.toml | 4 ++-- laws/Cargo.toml | 4 ++-- proc-macro-helpers/Cargo.toml | 4 ++-- proc-macros/Cargo.toml | 6 +++--- 7 files changed, 19 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a9269678..6e7ef448 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,10 @@ 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.4.3]: - avoid clippy::unneeded_field_pattern (https://github.com/lloydmeta/frunk/pull/216) +- rework #![no_std] support, switch on alloc (https://github.com/lloydmeta/frunk/pull/236) ## [0.4.2]: - Removed `proc-macro-hack` machinery (`proc-macros-impl`) (https://github.com/lloydmeta/frunk/pull/214) diff --git a/Cargo.toml b/Cargo.toml index c8693f01..a0cf2890 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,23 +19,23 @@ time = "0.3" [dependencies.frunk_core] path = "core" default-features = false -version = "0.4.2" +version = "0.4.3" [dependencies.frunk_proc_macros] path = "proc-macros" default-features = false optional = true -version = "0.1.2" +version = "0.1.3" [dependencies.frunk_derives] path = "derives" default-features = false -version = "0.4.2" +version = "0.4.3" [dev-dependencies.frunk_laws] path = "laws" default-features = false -version = "0.5.0" +version = "0.5.2" [dependencies] serde = { version = "^1.0", optional = true, features = [ "derive" ] } diff --git a/core/Cargo.toml b/core/Cargo.toml index 35702935..f9380ba3 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -25,14 +25,14 @@ serde = { version = "^1.0", optional = true, features = [ "derive" ] } [dev-dependencies.frunk_derives] path = "../derives" default-features = false -version = "0.4.1" +version = "0.4.3" [dev-dependencies.frunk] path = ".." default-features = false -version = "0.4.2" +version = "0.4.3" [dev-dependencies.frunk_proc_macros] path = "../proc-macros" default-features = false -version = "0.1.2" +version = "0.1.3" diff --git a/derives/Cargo.toml b/derives/Cargo.toml index fdac7867..30d824fc 100644 --- a/derives/Cargo.toml +++ b/derives/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "frunk_derives" edition = "2021" -version = "0.4.2" +version = "0.4.3" authors = ["Lloyd "] description = "frunk_derives contains the custom derivations for certain traits in Frunk." license = "MIT" @@ -22,4 +22,4 @@ quote = "1" [dependencies.frunk_proc_macro_helpers] path = "../proc-macro-helpers" default-features = false -version = "0.1.2" +version = "0.1.3" diff --git a/laws/Cargo.toml b/laws/Cargo.toml index a2a75b32..1ba65f8e 100644 --- a/laws/Cargo.toml +++ b/laws/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "frunk_laws" edition = "2021" -version = "0.5.1" +version = "0.5.2" authors = ["Lloyd "] description = "frunk_laws contains laws for algebras declared in Frunk." license = "MIT" @@ -15,7 +15,7 @@ travis-ci = { repository = "lloydmeta/frunk" } [dependencies.frunk] path = ".." default-features = false -version = "0.4.2" +version = "0.4.3" features = ["std"] [dependencies] diff --git a/proc-macro-helpers/Cargo.toml b/proc-macro-helpers/Cargo.toml index a58542f5..ad587e3b 100644 --- a/proc-macro-helpers/Cargo.toml +++ b/proc-macro-helpers/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "frunk_proc_macro_helpers" edition = "2021" -version = "0.1.2" +version = "0.1.3" authors = ["Lloyd "] description = "Common internal functions for frunk's proc macros" license = "MIT" @@ -20,4 +20,4 @@ proc-macro2 = "1" [dependencies.frunk_core] path = "../core" default-features = false -version = "0.4.2" +version = "0.4.3" diff --git a/proc-macros/Cargo.toml b/proc-macros/Cargo.toml index b190ef27..1afe9e34 100644 --- a/proc-macros/Cargo.toml +++ b/proc-macros/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "frunk_proc_macros" edition = "2021" -version = "0.1.2" +version = "0.1.3" authors = ["Lloyd "] description = "Proc macros for Frunk" license = "MIT" @@ -23,9 +23,9 @@ proc-macro = true [dependencies.frunk_core] path = "../core" default-features = false -version = "0.4.2" +version = "0.4.3" [dependencies.frunk_proc_macro_helpers] path = "../proc-macro-helpers" default-features = false -version = "0.1.2" +version = "0.1.3"