diff --git a/CHANGELOG.md b/CHANGELOG.md index bd042c8a..7c812844 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,9 @@ ## Changelog -### Unreleased +### v1.3.2 (2023-11-11) -* Add support for custom unit definitions: you can now define your own units - in the `~/.config/fend/config.toml` configuration file. For example: +* You can now define your own custom units in the `~/.config/fend/config.toml` + configuration file. For example: ```toml [[custom-units]] diff --git a/Cargo.lock b/Cargo.lock index fe77f27c..f2818564 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -147,7 +147,7 @@ dependencies = [ [[package]] name = "fend" -version = "1.3.1" +version = "1.3.2" dependencies = [ "console", "ctrlc", @@ -164,11 +164,11 @@ dependencies = [ [[package]] name = "fend-core" -version = "1.3.1" +version = "1.3.2" [[package]] name = "fend-wasm" -version = "1.3.1" +version = "1.3.2" dependencies = [ "fend-core", "instant", diff --git a/Cargo.toml b/Cargo.toml index ca65e601..5614741c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["cli", "core", "wasm"] resolver = "2" [workspace.package] -version = "1.3.1" +version = "1.3.2" description = "Arbitrary-precision unit-aware calculator" edition = "2021" homepage = "https://github.com/printfn/fend" @@ -13,7 +13,7 @@ categories = ["command-line-utilities", "mathematics", "science"] license = "MIT" [workspace.dependencies] -fend-core = { version = "1.3.1", path = "core" } +fend-core = { version = "1.3.2", path = "core" } [profile.release] lto = true