diff --git a/NEWS.md b/NEWS.md index 649d9e1f..b3ff79e0 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,9 @@ # Unitful.jl changelog +## v1.16.2 (2023-08-05) + +* ![Bugfix:](https://img.shields.io/badge/-bugfix-purple) The conversion factors between units can no longer be wrongly calculated as `NaN`, `Inf`, or `0` (which could happen, e.g., in the case of large exponents). The conversion factor is now calculated correctly in more cases, and an error is thrown if it cannot be calculated due to floating-point over- or underflow ([#648](https://github.com/PainterQubits/Unitful.jl/pull/648)). + ## v1.16.1 (2023-08-02) * ![Enhancement:](https://img.shields.io/badge/-enhancement-blue) Replaced occurrences of single-argument `@doc` for duplicating docstrings, which could lead to errors when creating a Docker image with Julia 1.9 and Unitful ([#671](https://github.com/PainterQubits/Unitful.jl/pull/671)). diff --git a/Project.toml b/Project.toml index 1778c7ea..58498ac6 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "Unitful" uuid = "1986cc42-f94f-5a68-af5c-568840ba703d" -version = "1.16.1" +version = "1.16.2" [deps] ConstructionBase = "187b0558-2788-49d3-abe0-74a17ed4e7c9"