Skip to content

Commit

Permalink
Release version 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
printfn committed Jul 10, 2024
1 parent 84ef616 commit 5e76108
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
## Changelog

### v1.5.0 (2024-07-10)

* Add fibonacci function (e.g. `fib 6` is 8, `fib 7` is 13)
* Keep percentage unit during automatic unit simplification
* Support uppercase identifiers for built-in functions, e.g. `SQRT` or `EXP`

### v1.4.9 (2024-06-20)

* Fix modulo and some other binary operators (including bitwise operators)
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.9"
version = "1.5.0"
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 = "MIT"

[workspace.dependencies]
fend-core = { version = "1.4.9", path = "core" }
fend-core = { version = "1.5.0", path = "core" }

[profile.release]
lto = true
Expand Down

0 comments on commit 5e76108

Please sign in to comment.