diff --git a/CHANGELOG.md b/CHANGELOG.md index e8fb4e5..ea8c0ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 1.3.1 - 2021 Jan 14 +- Fix spelling of `Celsius` (@joseluis) + ## 1.3.0 - 2020 Nov 29 - Added unit of mass `Stone` - Added keyword `pounds-force` (used for `PoundsPerSquareInch`) @@ -28,8 +31,8 @@ - Fixed error caused by consecutive percentage signs ## 1.0.2 - 2020 Oct 12 -- Fix parsing of unit `Quarter` (#1) -- Use division instead of multiplication when dividing numbers of the same unit `Quarter` (#1) +- Fix parsing of unit `Quarter` (@ethwu) +- Use division instead of multiplication when dividing numbers of the same unit `Quarter` (@ethwu) ## 1.0.1 - 2020 Aug 20 - Fixed the library not working diff --git a/Cargo.lock b/Cargo.lock index 9756977..a7c3b36 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -14,7 +14,7 @@ checksum = "95752358c8f7552394baf48cd82695b345628ad3f170d607de3ca03b8dacca15" [[package]] name = "cpc" -version = "1.3.0" +version = "1.3.1" dependencies = [ "decimal_fixes_mirror", ] diff --git a/Cargo.toml b/Cargo.toml index b9ce542..78a6754 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cpc" -version = "1.3.0" +version = "1.3.1" description = "evaluates math expressions, with support for units and conversion between units" authors = ["Kasper Henningsen"] edition = "2018" diff --git a/README.md b/README.md index feacf28..a297623 100644 --- a/README.md +++ b/README.md @@ -191,7 +191,7 @@ match string { ### Cross-compiling 1. [Install Docker](https://docs.docker.com/get-docker/) -2. Install `cross`: +2. Install [cross](https://github.com/rust-embedded/cross): ``` cargo install cross ``` @@ -202,6 +202,7 @@ match string { - Note that building for `x86_64-apple-darwin` only works on macOS - For more targets, check out [the targets `cross` supports](https://github.com/rust-embedded/cross#supported-targets) - If you run `cross build` in parallel, you might get a `cargo not found` error + The compiled binaries will now be available inside `target//release/`. The filename will be either `cpc` or `cpc.exe`. ### Releasing a new version