From 7af8da5cdb3c7421f7ce62ada4c79a4bbb598d4c Mon Sep 17 00:00:00 2001 From: Sebastian Schmidt Date: Thu, 13 Jan 2022 14:54:34 +0200 Subject: [PATCH] Prepare 7.0.0 release. --- CHANGELOG.md | 16 ++++++++++++++-- src/lib.rs | 2 +- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea439fc..10f59b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,16 @@ ### Removed +### Changed + +### Fixed + +### Deprecated + +### Contributors + +## [7.0.0](https://github.com/ISibboI/evalexpr/compare/6.6.0...7.0.0) - 2022-01-13 + ### Changed * Made the `EvalexprError` enum non_exhaustive. @@ -16,10 +26,12 @@ * Expressions that have dangling parenthese expressions such as `4(5)` now produce an error. -### Deprecated - ### Contributors +My warmhearted thanks goes to + + * [dbr/Ben](https://github.com/dbr) + ## [6.6.0](https://github.com/ISibboI/evalexpr/compare/6.5.0...6.6.0) - 2021-10-13 ### Added diff --git a/src/lib.rs b/src/lib.rs index 187c101..f931cfa 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,7 +5,7 @@ //! //! ```toml //! [dependencies] -//! evalexpr = "6" +//! evalexpr = "7" //! ``` //! //! Then you can use `evalexpr` to **evaluate expressions** like this: