diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f334e0..f3178b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,22 @@ All notable changes to this project will be documented in this file. +## [1.4.0] - 2025-04-06 + +### 🚀 Features + +- Default env variables + ## [1.3.1] - 2025-01-31 ### 🐛 Bug Fixes - Better enforce typing for commands +### ⚙️ Miscellaneous Tasks + +- Release + ## [1.3.0] - 2025-01-31 ### 🚀 Features diff --git a/Cargo.lock b/Cargo.lock index 3a972cd..7eccbc4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -40,7 +40,7 @@ dependencies = [ [[package]] name = "comlexr" -version = "1.3.1" +version = "1.4.0" dependencies = [ "comlexr_macro", "rstest", @@ -51,7 +51,7 @@ dependencies = [ [[package]] name = "comlexr_macro" -version = "1.3.1" +version = "1.4.0" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 0b078c9..fe1bc5c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ members = ["macro"] [workspace.package] description = "Dynamically build Command objects with conditional expressions" repository = "https://gitlab.com/wunker-bunker/comlexr" -version = "1.3.1" +version = "1.4.0" edition = "2021" rust-version = "1.60" license = "MIT" @@ -43,7 +43,7 @@ pre-release-replacements = [ all-features = true [dependencies] -comlexr_macro = { version = "=1.3.1", path = "./macro" } +comlexr_macro = { version = "=1.4.0", path = "./macro" } thiserror = "1.0.65" [dev-dependencies] diff --git a/README.md b/README.md index 9f04c92..c01fb3a 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Add `comlexr` to your project's `Cargo.toml`: ```toml [dependencies] -comlexr = "1.3.1" +comlexr = "1.4.0" ``` ## MSRV