This commit is contained in:
Kasper 2021-07-03 17:34:34 +02:00
parent 4904ac3c21
commit 0e58740749
3 changed files with 4 additions and 3 deletions

View File

@ -1,8 +1,9 @@
## Next ## 1.6.0 - 2021 Jul 3
- Add support for non-US "metre" and "litre" spellings - Add support for non-US "metre" and "litre" spellings
- Add help menu - Add help menu
- Add `--version` flag - Add `--version` flag
- Freak out instead of ignoring unexpected arguments - Freak out instead of ignoring unexpected arguments
- Print errors to STDERR
- Fix decimeter parsed as centimeter - Fix decimeter parsed as centimeter
## 1.5.1 - 2021 Jun 10 ## 1.5.1 - 2021 Jun 10

2
Cargo.lock generated
View File

@ -14,7 +14,7 @@ checksum = "e3c69b077ad434294d3ce9f1f6143a2a4b89a8a2d54ef813d85003a4fd1137fd"
[[package]] [[package]]
name = "cpc" name = "cpc"
version = "1.5.1" version = "1.6.0"
dependencies = [ dependencies = [
"decimal", "decimal",
] ]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "cpc" name = "cpc"
version = "1.5.1" version = "1.6.0"
description = "evaluates math expressions, with support for units and conversion between units" description = "evaluates math expressions, with support for units and conversion between units"
authors = ["Kasper Henningsen"] authors = ["Kasper Henningsen"]
edition = "2018" edition = "2018"