···11+## 1.3.1 - 2021 Jan 14
22+- Fix spelling of `Celsius` (@joseluis)
33+14## 1.3.0 - 2020 Nov 29
25- Added unit of mass `Stone`
36- Added keyword `pounds-force` (used for `PoundsPerSquareInch`)
···2831- Fixed error caused by consecutive percentage signs
29323033## 1.0.2 - 2020 Oct 12
3131-- Fix parsing of unit `Quarter` (#1)
3232-- Use division instead of multiplication when dividing numbers of the same unit `Quarter` (#1)
3434+- Fix parsing of unit `Quarter` (@ethwu)
3535+- Use division instead of multiplication when dividing numbers of the same unit `Quarter` (@ethwu)
33363437## 1.0.1 - 2020 Aug 20
3538- Fixed the library not working
···11[package]
22name = "cpc"
33-version = "1.3.0"
33+version = "1.3.1"
44description = "evaluates math expressions, with support for units and conversion between units"
55authors = ["Kasper Henningsen"]
66edition = "2018"
+2-1
README.md
···191191192192### Cross-compiling
1931931. [Install Docker](https://docs.docker.com/get-docker/)
194194-2. Install `cross`:
194194+2. Install [cross](https://github.com/rust-embedded/cross):
195195 ```
196196 cargo install cross
197197 ```
···202202 - Note that building for `x86_64-apple-darwin` only works on macOS
203203 - For more targets, check out [the targets `cross` supports](https://github.com/rust-embedded/cross#supported-targets)
204204 - If you run `cross build` in parallel, you might get a `cargo not found` error
205205+205206The compiled binaries will now be available inside `target/<target>/release/`. The filename will be either `cpc` or `cpc.exe`.
206207207208### Releasing a new version