diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d6e757e..df784379 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.1.0](https://github.com/cornucopia-rs/cornucopia/compare/cornucopia-v1.0.1...cornucopia-v1.1.0) - 2026-08-20 + +### Added + +- Source the `.env` file for environment variables ([#318](https://github.com/cornucopia-rs/cornucopia/pull/318)) + ## [1.0.1](https://github.com/cornucopia-rs/cornucopia/compare/cornucopia-v1.0.0...cornucopia-v1.0.1) - 2026-08-12 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 1cfa19eb..063c936f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -685,7 +685,7 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" [[package]] name = "cornucopia" -version = "1.0.1" +version = "1.1.0" dependencies = [ "cargo_toml", "chumsky", diff --git a/Cargo.toml b/Cargo.toml index ebccd254..6b80e0ab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cornucopia" -version = "1.0.1" +version = "1.1.0" edition = "2024" rust-version = "1.88.0" license = "MIT/Apache-2.0"