Prepare for 6.6.0 release.

This commit is contained in:
Sebastian Schmidt 2021-10-13 14:31:02 +03:00
parent 55092ce793
commit ea278893ac
3 changed files with 16 additions and 5 deletions

View File

@ -6,9 +6,6 @@
### Added ### 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 ### Removed
### Changed ### Changed
@ -19,6 +16,20 @@
### Contributors ### 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 ## [6.5.0](https://github.com/ISibboI/evalexpr/compare/6.4.0...6.5.0) - 2021-08-16
### Added ### Added

View File

@ -22,7 +22,7 @@ Add `evalexpr` as dependency to your `Cargo.toml`:
```toml ```toml
[dependencies] [dependencies]
evalexpr = "7" evalexpr = "6"
``` ```
Then you can use `evalexpr` to **evaluate expressions** like this: Then you can use `evalexpr` to **evaluate expressions** like this:

View File

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