Skip to content

Commit

Permalink
Bump version to v0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
printfn committed Sep 29, 2020
1 parent a2d7767 commit d8d5fce
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 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 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.4"
version = "0.1.5"
authors = ["printfn <[email protected]>"]
description = "Calculator and unit conversion tool"
homepage = "https://github.com/printfn/fend-rs"
Expand All @@ -18,7 +18,7 @@ directories = "3.0.1"
ctrlc = "3.1.6"

[dependencies.fend-core]
version = "0.1.4"
version = "0.1.5"
path = "./core"

[workspace]
Expand Down
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.4"
version = "0.1.5"
authors = ["printfn <[email protected]>"]
description = "Backend for calculator and unit conversion tool fend"
homepage = "https://github.com/printfn/fend-rs"
Expand Down
6 changes: 3 additions & 3 deletions core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#![allow(clippy::too_many_arguments)] // format_trailing_digits in BigRat
#![deny(clippy::pedantic)]
#![allow(clippy::non_ascii_literal)]
#![doc(html_root_url = "https://docs.rs/fend-core/0.1.4")]
#![doc(html_root_url = "https://docs.rs/fend-core/0.1.5")]

mod ast;
mod err;
Expand Down Expand Up @@ -111,12 +111,12 @@ pub fn evaluate_with_interrupt(
/// Returns the current version of `fend-core`.
#[must_use]
pub fn get_version() -> String {
"0.1.4".to_string()
"0.1.5".to_string()
}

/// Returns the current extended version of `fend-core`, which includes the
/// release date in addition to the semver number
#[must_use]
pub fn get_extended_version() -> String {
"0.1.4 (2020-09-15)".to_string()
"0.1.5 (2020-09-29)".to_string()
}
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ fn print_help(explain_quitting: bool) {
}

fn print_version() {
println!("fend v0.1.4 (2020-09-15)");
println!("fend v0.1.5 (2020-09-29)");
println!("fend-core v{}", fend_core::get_extended_version());
}

Expand Down

0 comments on commit d8d5fce

Please sign in to comment.