From 497784647d4b917e94452ab8516f5f24ec34decf Mon Sep 17 00:00:00 2001 From: Jake Shadle Date: Sun, 5 Apr 2020 08:59:58 +0200 Subject: [PATCH] Release 0.3.0 --- CHANGELOG.md | 4 +++- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4db06fd..5c7c133 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +## [0.3.0] - 2020-04-05 ### Changed - [PR#7](https://github.com/EmbarkStudios/cfg-expr/pull/7) changed `Expression::eval` to take a `Logic` trait, to enable evaluation of 'unknown' predicates. Thanks [@sunshowers](https://github.com/sunshowers)! @@ -25,7 +26,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial add of all the things -[Unreleased]: https://github.com/EmbarkStudios/cfg-expr/compare/0.2.1...HEAD +[Unreleased]: https://github.com/EmbarkStudios/cfg-expr/compare/0.3.0...HEAD +[0.3.0]: https://github.com/EmbarkStudios/cfg-expr/compare/0.2.1...0.3.0 [0.2.1]: https://github.com/EmbarkStudios/cfg-expr/compare/0.2.0...0.2.1 [0.2.0]: https://github.com/EmbarkStudios/cfg-expr/compare/0.1.0...0.2.0 [0.1.0]: https://github.com/EmbarkStudios/cfg-expr/releases/tag/0.1.0 diff --git a/Cargo.toml b/Cargo.toml index 219269a..342e22f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "cfg-expr" description = "A parser and evaluator for Rust `cfg()` expressions." repository = "https://github.com/EmbarkStudios/cfg-expr" -version = "0.2.1" +version = "0.3.0" authors = ["Embark ", "Jake Shadle "] edition = "2018" license = "MIT OR Apache-2.0"