Prepare 7.0.0 release.

This commit is contained in:
Sebastian Schmidt 2022-01-13 14:54:34 +02:00
parent 4e5e218d3e
commit 7af8da5cdb
2 changed files with 15 additions and 3 deletions

View File

@ -8,6 +8,16 @@
### Removed ### Removed
### Changed
### Fixed
### Deprecated
### Contributors
## [7.0.0](https://github.com/ISibboI/evalexpr/compare/6.6.0...7.0.0) - 2022-01-13
### Changed ### Changed
* Made the `EvalexprError` enum non_exhaustive. * Made the `EvalexprError` enum non_exhaustive.
@ -16,10 +26,12 @@
* Expressions that have dangling parenthese expressions such as `4(5)` now produce an error. * Expressions that have dangling parenthese expressions such as `4(5)` now produce an error.
### Deprecated
### Contributors ### 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 ## [6.6.0](https://github.com/ISibboI/evalexpr/compare/6.5.0...6.6.0) - 2021-10-13
### Added ### Added

View File

@ -5,7 +5,7 @@
//! //!
//! ```toml //! ```toml
//! [dependencies] //! [dependencies]
//! evalexpr = "6" //! evalexpr = "7"
//! ``` //! ```
//! //!
//! Then you can use `evalexpr` to **evaluate expressions** like this: //! Then you can use `evalexpr` to **evaluate expressions** like this: