@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog ](https://keepachangelog.com/en/1.0.0/ ),
The format is based on [Keep a Changelog ](https://keepachangelog.com/en/1.0.0/ ),
and this project adheres to [Semantic Versioning ](https://semver.org/spec/v2.0.0.html ).
and this project adheres to [Semantic Versioning ](https://semver.org/spec/v2.0.0.html ).
## Unreleased
### Fixed
- Fix formatting of floating point literals that use `−` (Unicode U+2212) instead of the
typically used `-` (ASCII/Unicode U+002D). The parser treats them as synonyms but the
former triggered an assertion error in Runic while formatting. After this change Runic
will normalize to `-` when formatting ([#137], [#138]).
## [v1.4.2] - 2025-02-18
## [v1.4.2] - 2025-02-18
### Fixed
### Fixed
- Add missing documentation of `--lines` to the `--help` output ([#136]).
- Add missing documentation of `--lines` to the `--help` output ([#136]).
@ -122,6 +129,7 @@ First stable release of Runic.jl. See [README.md](README.md) for details and doc
[v1.3.0]: https://github.com/fredrikekre/Runic.jl/releases/tag/v1.3.0
[v1.3.0]: https://github.com/fredrikekre/Runic.jl/releases/tag/v1.3.0
[v1.4.0]: https://github.com/fredrikekre/Runic.jl/releases/tag/v1.4.0
[v1.4.0]: https://github.com/fredrikekre/Runic.jl/releases/tag/v1.4.0
[v1.4.1]: https://github.com/fredrikekre/Runic.jl/releases/tag/v1.4.1
[v1.4.1]: https://github.com/fredrikekre/Runic.jl/releases/tag/v1.4.1
[v1.4.2]: https://github.com/fredrikekre/Runic.jl/releases/tag/v1.4.2
[#97]: https://github.com/fredrikekre/Runic.jl/issues/97
[#97]: https://github.com/fredrikekre/Runic.jl/issues/97
[#108]: https://github.com/fredrikekre/Runic.jl/issues/108
[#108]: https://github.com/fredrikekre/Runic.jl/issues/108
[#109]: https://github.com/fredrikekre/Runic.jl/issues/109
[#109]: https://github.com/fredrikekre/Runic.jl/issues/109
@ -142,3 +150,5 @@ First stable release of Runic.jl. See [README.md](README.md) for details and doc
[#132]: https://github.com/fredrikekre/Runic.jl/issues/132
[#132]: https://github.com/fredrikekre/Runic.jl/issues/132
[#133]: https://github.com/fredrikekre/Runic.jl/issues/133
[#133]: https://github.com/fredrikekre/Runic.jl/issues/133
[#136]: https://github.com/fredrikekre/Runic.jl/issues/136
[#136]: https://github.com/fredrikekre/Runic.jl/issues/136
[#137]: https://github.com/fredrikekre/Runic.jl/issues/137
[#138]: https://github.com/fredrikekre/Runic.jl/issues/138