Skip to content

Commit

Permalink
Release version 1.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
printfn committed May 4, 2024
1 parent dadeb8b commit 002fb42
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 6 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
## Changelog

### v1.4.7 (2024-05-04)

* Add Japanese units `shaku`, `tsubo` and `tatami`
* Significantly improve performance when calculating powers with
decimal numbers, e.g. `e^27.2`
* Revamp fend's web UI: it is now built with React and runs calculations
in a background thread. This fixes the timeout issues that used to affect
long-running calculations.
* Fix a bug where variable serialisation could cause numbers to be negated. This
only affected fend-wasm and fend-web but could lead to incorrect results
when using variables across multiple calculations.
* Add some custom TypeScript definitions to fend-wasm.

### v1.4.6 (2024-03-28)

* Add function `mean` (or `average`) to compute the mean value of probability
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.6"
version = "1.4.7"
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.6", path = "core" }
fend-core = { version = "1.4.7", path = "core" }

[profile.release]
lto = true
Expand Down
1 change: 1 addition & 0 deletions web/package-lock.json

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

13 changes: 12 additions & 1 deletion web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "fend-web",
"private": true,
"version": "0.0.0",
"description": "Arbitrary-precision unit-aware calculator",
"type": "module",
"scripts": {
"dev": "vite",
Expand All @@ -25,5 +26,15 @@
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"vite": "^5.2.11"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/printfn/fend.git"
},
"author": "printfn",
"license": "MIT",
"bugs": {
"url": "https://github.com/printfn/fend/issues"
},
"homepage": "https://github.com/printfn/fend#readme"
}

0 comments on commit 002fb42

Please sign in to comment.