From 5cfc2c64faafcaae9ab2d4b5b7693682443d3865 Mon Sep 17 00:00:00 2001 From: printfn Date: Wed, 20 Jan 2021 09:17:27 +1300 Subject: [PATCH] Release version 0.1.13 --- Cargo.lock | 6 +++--- README.md | 6 +++--- cli/Cargo.toml | 4 ++-- core/Cargo.toml | 2 +- core/src/lib.rs | 4 ++-- wasm/Cargo.toml | 2 +- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2c4d07ff..d87064ee 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -124,7 +124,7 @@ dependencies = [ [[package]] name = "fend" -version = "0.1.11" +version = "0.1.13" dependencies = [ "ctrlc", "directories", @@ -134,11 +134,11 @@ dependencies = [ [[package]] name = "fend-core" -version = "0.1.11" +version = "0.1.13" [[package]] name = "fend-wasm" -version = "0.1.11" +version = "0.1.13" dependencies = [ "fend-core", "instant", diff --git a/README.md b/README.md index 123941a0..206ae592 100644 --- a/README.md +++ b/README.md @@ -75,8 +75,8 @@ approx. 0.7071067811 + 0.7071067811i ``` ``` -> 1 1/2' to cm -45.72 cm +> 100 °C to °F +210 °F ``` ``` @@ -85,7 +85,7 @@ approx. 0.3066013937 parsecs ``` ``` -> (x: 2x) pi +> (x => 2x) pi approx. 6.2831853071 ``` diff --git a/cli/Cargo.toml b/cli/Cargo.toml index dc2e2063..187aeecd 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "fend" # Don't forget to update print_version() -version = "0.1.11" +version = "0.1.13" authors = ["printfn "] description = "Arbitrary-precision unit-aware calculator" homepage = "https://github.com/printfn/fend" @@ -18,5 +18,5 @@ directories = "3.0.1" ctrlc = "3.1.7" [dependencies.fend-core] -version = "0.1.11" +version = "0.1.13" path = "../core" diff --git a/core/Cargo.toml b/core/Cargo.toml index 9c9d4ba4..6c5407a8 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "fend-core" # Don't forget to update html_root_url and get_version() -version = "0.1.11" +version = "0.1.13" authors = ["printfn "] description = "Arbitrary-precision unit-aware calculator" homepage = "https://github.com/printfn/fend" diff --git a/core/src/lib.rs b/core/src/lib.rs index 363fbb35..e2e84aba 100644 --- a/core/src/lib.rs +++ b/core/src/lib.rs @@ -6,7 +6,7 @@ #![allow(clippy::non_ascii_literal)] #![deny(clippy::use_self)] #![deny(unreachable_pub)] -#![doc(html_root_url = "https://docs.rs/fend-core/0.1.11")] +#![doc(html_root_url = "https://docs.rs/fend-core/0.1.13")] mod ast; mod err; @@ -108,7 +108,7 @@ pub fn evaluate_with_interrupt( } fn get_version_as_str() -> &'static str { - "0.1.11" + "0.1.13" } /// Returns the current version of `fend-core`. diff --git a/wasm/Cargo.toml b/wasm/Cargo.toml index 5b97f207..31aaa729 100644 --- a/wasm/Cargo.toml +++ b/wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fend-wasm" -version = "0.1.11" +version = "0.1.13" authors = ["printfn "] edition = "2018" license = "MIT"