From 474be0c29e166e57378c85f21bca04e6bbc034f3 Mon Sep 17 00:00:00 2001 From: printfn Date: Sun, 14 Feb 2021 23:03:55 +1300 Subject: [PATCH] Release version 0.1.14 --- Cargo.lock | 6 +++--- cli/Cargo.toml | 4 ++-- cli/README.md | 13 +++++++++++-- core/Cargo.toml | 2 +- core/src/lib.rs | 4 ++-- wasm/Cargo.toml | 2 +- 6 files changed, 20 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 827806c8..1ddc9ba9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -124,7 +124,7 @@ dependencies = [ [[package]] name = "fend" -version = "0.1.13" +version = "0.1.14" dependencies = [ "ctrlc", "directories", @@ -134,11 +134,11 @@ dependencies = [ [[package]] name = "fend-core" -version = "0.1.13" +version = "0.1.14" [[package]] name = "fend-wasm" -version = "0.1.13" +version = "0.1.14" dependencies = [ "fend-core", "instant", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 85bbddf8..9d0a93c9 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.13" +version = "0.1.14" 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.13" +version = "0.1.14" path = "../core" diff --git a/cli/README.md b/cli/README.md index 5923c58b..fae5f420 100644 --- a/cli/README.md +++ b/cli/README.md @@ -14,6 +14,10 @@ Unique features: See the [manual](https://github.com/printfn/fend/wiki) for more information. +## [Web Interface](https://printfn.github.io/fend-website) + +fend is now available on the web at [printfn.github.io/fend-website](https://printfn.github.io/fend-website). + ## Installation @@ -33,6 +37,11 @@ $ fend > ``` +### Packages + +* [AUR](https://aur.archlinux.org/packages/fend/) +* [nixpkgs](https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/misc/fend/default.nix) + ## [Manual](https://github.com/printfn/fend/wiki) You can find the fend manual [here](https://github.com/printfn/fend/wiki). @@ -60,8 +69,8 @@ approx. 0.7071067811 + 0.7071067811i ``` ``` -> 1 1/2' to cm -45.72 cm +> 100 °C to °F +210 °F ``` ``` diff --git a/core/Cargo.toml b/core/Cargo.toml index 6c5407a8..66038427 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.13" +version = "0.1.14" 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 8b4907bf..58079bd4 100644 --- a/core/src/lib.rs +++ b/core/src/lib.rs @@ -5,7 +5,7 @@ #![forbid(clippy::needless_borrow)] #![forbid(clippy::cognitive_complexity)] #![forbid(unreachable_pub)] -#![doc(html_root_url = "https://docs.rs/fend-core/0.1.13")] +#![doc(html_root_url = "https://docs.rs/fend-core/0.1.14")] mod ast; mod error; @@ -107,7 +107,7 @@ pub fn evaluate_with_interrupt( } const fn get_version_as_str() -> &'static str { - "0.1.13" + "0.1.14" } /// Returns the current version of `fend-core`. diff --git a/wasm/Cargo.toml b/wasm/Cargo.toml index 74e214d4..02097e95 100644 --- a/wasm/Cargo.toml +++ b/wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fend-wasm" -version = "0.1.13" +version = "0.1.14" authors = ["printfn "] edition = "2018" license = "MIT"