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]
name = "evalexpr"
version = "2.0.1-alpha.0"
version = "3.0.0-alpha.0"
description = "A powerful arithmetic and boolean expression evaluator"
keywords = ["expression", "evaluate", "evaluator", "arithmetic", "boolean"]
categories = ["parsing", "game-engines"]

View File

@ -18,7 +18,7 @@ Add `evalexpr` as dependency to your `Cargo.toml`:
```toml
[dependencies]
evalexpr = "2"
evalexpr = "3"
```
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
[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.

View File

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