diff --git a/CHANGELOG.md b/CHANGELOG.md index dd58bea9..546bdf9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ ## Changelog +### v1.4.4 (2024-03-05) + +* Add `==` and `!=` operators for equality and inequality (by + [@frectonz](https://github.com/frectonz)) + + For example: + + ``` + > 2 metres == 200 cm + true + > 4 kg == 2 lbs + false + ``` +* The fend CLI now uses `native-tls` by default, instead of `rustls`. + On Windows this uses SChannel (via the `schannel` crate), on macOS it + uses Secure Transport via the `security-framework` crate, and on Linux + it links to OpenSSL with the `openssl` crate. + You can continue using `rustls` by compiling with the + `--no-default-features --features rustls` flags. + See the CLI's `Cargo.toml` for further details. + ### v1.4.3 (2024-02-23) * Add `floor`, `ceil` and `round` functions (by diff --git a/Cargo.lock b/Cargo.lock index 603f7e3a..57bef028 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -120,7 +120,7 @@ dependencies = [ [[package]] name = "fend" -version = "1.4.3" +version = "1.4.4" dependencies = [ "ctrlc", "fend-core", @@ -136,11 +136,11 @@ dependencies = [ [[package]] name = "fend-core" -version = "1.4.3" +version = "1.4.4" [[package]] name = "fend-wasm" -version = "1.4.3" +version = "1.4.4" dependencies = [ "fend-core", "instant", diff --git a/Cargo.toml b/Cargo.toml index 7bad9c90..6bf9a85d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["cli", "core", "wasm"] resolver = "2" [workspace.package] -version = "1.4.3" +version = "1.4.4" 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 = "GPL-3.0-or-later" [workspace.dependencies] -fend-core = { version = "1.4.3", path = "core" } +fend-core = { version = "1.4.4", path = "core" } [profile.release] lto = true