Skip to content

Commit

Permalink
Release version 0.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
printfn committed Nov 6, 2020
1 parent 84d1c7e commit 0572d66
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 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.8"
version = "0.1.9"
authors = ["printfn <[email protected]>"]
description = "Calculator and unit conversion tool"
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.8"
version = "0.1.9"
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.8"
version = "0.1.9"
authors = ["printfn <[email protected]>"]
description = "Backend for calculator and unit conversion tool fend"
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.8")]
#![doc(html_root_url = "https://docs.rs/fend-core/0.1.9")]

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.8"
"0.1.9"
}

/// Returns the current version of `fend-core`.
Expand Down

0 comments on commit 0572d66

Please sign in to comment.