Update target release

This commit is contained in:
Sebastian Schmidt 2019-04-12 18:45:46 +02:00
parent 725472ef96
commit 15313f7341
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "evalexpr" name = "evalexpr"
version = "4.1.1-alpha.0" version = "5.0.0-alpha.0"
description = "A powerful arithmetic and boolean expression evaluator" description = "A powerful arithmetic and boolean expression evaluator"
keywords = ["expression", "evaluate", "evaluator", "arithmetic", "boolean"] keywords = ["expression", "evaluate", "evaluator", "arithmetic", "boolean"]
categories = ["parsing", "game-engines"] categories = ["parsing", "game-engines"]

View File

@ -5,7 +5,7 @@
//! //!
//! ```toml //! ```toml
//! [dependencies] //! [dependencies]
//! evalexpr = "3" //! evalexpr = "5"
//! ``` //! ```
//! //!
//! Add the `extern crate` definition to your `main.rs` or `lib.rs`: //! Add the `extern crate` definition to your `main.rs` or `lib.rs`:
@ -310,7 +310,7 @@
//! //!
//! ```toml //! ```toml
//! [dependencies] //! [dependencies]
//! evalexpr = {version = "3", features = ["serde_support"]} //! evalexpr = {version = "5", features = ["serde_support"]}
//! ``` //! ```
//! //!
//! This crate implements `serde::de::Deserialize` for its type `Node` that represents a parsed expression tree. //! This crate implements `serde::de::Deserialize` for its type `Node` that represents a parsed expression tree.