From ea278893ac934721524f494dd26cd8284bc90914 Mon Sep 17 00:00:00 2001 From: Sebastian Schmidt Date: Wed, 13 Oct 2021 14:31:02 +0300 Subject: [PATCH] Prepare for 6.6.0 release. --- CHANGELOG.md | 17 ++++++++++++++--- README.md | 2 +- src/lib.rs | 2 +- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd5f858..dffdde0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,6 @@ ### Added - * Bitwise operators as builtin functions `bitand`, `bitor`, `bitxor`, `bitnot` (#88) - * Public immutable and mutable accessor functions to the operator and children of a Node. - ### Removed ### Changed @@ -19,6 +16,20 @@ ### Contributors +## [6.6.0](https://github.com/ISibboI/evalexpr/compare/6.5.0...6.6.0) - 2021-10-13 + +### Added + + * Bitwise operators as builtin functions `bitand`, `bitor`, `bitxor`, `bitnot` (#88) + * Public immutable and mutable accessor functions to the operator and children of a Node. + +### Contributors + +My warmhearted thanks goes to + + * [MichaƂ Hanusek](https://github.com/hanusek) + * [Kai Giebeler](https://github.com/kawogi) + ## [6.5.0](https://github.com/ISibboI/evalexpr/compare/6.4.0...6.5.0) - 2021-08-16 ### Added diff --git a/README.md b/README.md index 5e7b628..63cbcbf 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Add `evalexpr` as dependency to your `Cargo.toml`: ```toml [dependencies] -evalexpr = "7" +evalexpr = "6" ``` Then you can use `evalexpr` to **evaluate expressions** like this: diff --git a/src/lib.rs b/src/lib.rs index f931cfa..187c101 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,7 +5,7 @@ //! //! ```toml //! [dependencies] -//! evalexpr = "7" +//! evalexpr = "6" //! ``` //! //! Then you can use `evalexpr` to **evaluate expressions** like this: