Skip to content

Commit

Permalink
Release version 1.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
printfn committed Mar 28, 2024
1 parent 3a8e00d commit 6a01c36
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 5 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
## Changelog

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

* Add function `mean` (or `average`) to compute the mean value of probability
distributions (by [haykam821](https://github.com/haykam821)). For example:

```
> mean(d6)
7
> average(1d20 + 5)
15.5
```
* Add units `nibble` (4 bits) and `U` (rack units, equal to `1.75 inches`)
* Serialised variables are now compatible between 32-bit and 64-bit platforms
* Fix bug where calculating very large roman numerals could crash
the application
### v1.4.5 (2024-03-13)
* Add support for converting numbers to roman numerals (e.g.
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.5"
version = "1.4.6"
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.5", path = "core" }
fend-core = { version = "1.4.6", path = "core" }

[profile.release]
lto = true
Expand Down

0 comments on commit 6a01c36

Please sign in to comment.