Skip to content

Commit

Permalink
Release version 0.1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
printfn committed Nov 27, 2020
1 parent 32cfb21 commit 813f1d3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fend"
# Don't forget to update print_version()
version = "0.1.10"
version = "0.1.11"
authors = ["printfn <[email protected]>"]
description = "Arbitrary-precision unit-aware calculator"
homepage = "https://github.com/printfn/fend"
Expand All @@ -18,5 +18,5 @@ directories = "3.0.1"
ctrlc = "3.1.6"

[dependencies.fend-core]
version = "0.1.10"
version = "0.1.11"
path = "../core"
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fend-core"
# Don't forget to update html_root_url and get_version()
version = "0.1.10"
version = "0.1.11"
authors = ["printfn <[email protected]>"]
description = "Arbitrary-precision unit-aware calculator"
homepage = "https://github.com/printfn/fend"
Expand Down
4 changes: 2 additions & 2 deletions core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#![deny(clippy::pedantic)]
#![allow(clippy::non_ascii_literal)]
#![deny(clippy::use_self)]
#![doc(html_root_url = "https://docs.rs/fend-core/0.1.10")]
#![doc(html_root_url = "https://docs.rs/fend-core/0.1.11")]

mod ast;
mod err;
Expand Down Expand Up @@ -107,7 +107,7 @@ pub fn evaluate_with_interrupt(
}

fn get_version_as_str() -> &'static str {
"0.1.10"
"0.1.11"
}

/// Returns the current version of `fend-core`.
Expand Down
2 changes: 1 addition & 1 deletion wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fend-wasm"
version = "0.1.10"
version = "0.1.11"
authors = ["printfn <[email protected]>"]
edition = "2018"
license = "MIT"
Expand Down

0 comments on commit 813f1d3

Please sign in to comment.