Skip to content

Commit

Permalink
Release version 1.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
printfn committed Mar 5, 2024
1 parent 6bf3901 commit 1fb2c93
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 5 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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
Expand Down

0 comments on commit 1fb2c93

Please sign in to comment.