Set release target to major

This commit is contained in:
Sebastian Schmidt 2019-03-28 11:48:54 +01:00
parent ab49531306
commit 44152533c3
3 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "evalexpr" name = "evalexpr"
version = "2.0.1-alpha.0" version = "3.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

@ -18,7 +18,7 @@ Add `evalexpr` as dependency to your `Cargo.toml`:
```toml ```toml
[dependencies] [dependencies]
evalexpr = "2" evalexpr = "3"
``` ```
Add the `extern crate` definition to your `main.rs` or `lib.rs`: Add the `extern crate` definition to your `main.rs` or `lib.rs`:
@ -299,7 +299,7 @@ This can be done like this in the `Cargo.toml`:
```toml ```toml
[dependencies] [dependencies]
evalexpr = {version = "2", features = ["serde"]} evalexpr = {version = "3", features = ["serde"]}
``` ```
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.

View File

@ -5,7 +5,7 @@
//! //!
//! ```toml //! ```toml
//! [dependencies] //! [dependencies]
//! evalexpr = "2" //! evalexpr = "3"
//! ``` //! ```
//! //!
//! Add the `extern crate` definition to your `main.rs` or `lib.rs`: //! Add the `extern crate` definition to your `main.rs` or `lib.rs`:
@ -286,7 +286,7 @@
//! //!
//! ```toml //! ```toml
//! [dependencies] //! [dependencies]
//! evalexpr = {version = "2", features = ["serde"]} //! evalexpr = {version = "3", features = ["serde"]}
//! ``` //! ```
//! //!
//! 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.