summaryrefslogtreecommitdiffstats
path: root/third_party/rust/minimal-lexical/CHANGELOG
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:22:09 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:22:09 +0000
commit43a97878ce14b72f0981164f87f2e35e14151312 (patch)
tree620249daf56c0258faa40cbdcf9cfba06de2a846 /third_party/rust/minimal-lexical/CHANGELOG
parentInitial commit. (diff)
downloadfirefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz
firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/rust/minimal-lexical/CHANGELOG')
-rw-r--r--third_party/rust/minimal-lexical/CHANGELOG38
1 files changed, 38 insertions, 0 deletions
diff --git a/third_party/rust/minimal-lexical/CHANGELOG b/third_party/rust/minimal-lexical/CHANGELOG
new file mode 100644
index 0000000000..b1fd38ac14
--- /dev/null
+++ b/third_party/rust/minimal-lexical/CHANGELOG
@@ -0,0 +1,38 @@
+# Changelog
+
+Notes significant changes to minimal-lexical.
+
+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).
+
+## [0.1.4] 2021-10-02
+### Added
+- Missing license details for `src/bellerophon.rs`.
+
+## [0.2.0] 2021-09-10
+### Changed
+- `no_alloc` feature flag was replaced with an `alloc` feature flag.
+
+## [0.1.3] 2021-09-04
+### Added
+- Added the `compact` feature, which sacrifices performance for smaller binary sizes.
+- Added the `nightly` feature, which adds inline ASM to use FPU instructions for to ensure proper rounding on x86 targets using the x87 FPU without SSE2.
+
+### Changed
+- Removed stackvec dependent, even on `no_alloc`.
+- Improved the algorithms for parsing.
+- Simplified big-integer arithmetic, and the slow path algorithms.
+- Reduced the binary sizes.
+- Added optimizations for small floats.
+
+## [0.1.2] 2021-05-09
+### Added
+- Remove cached_float and infer exponents rather than store them.
+
+## [0.1.1] 2021-05-08
+### Added
+- Added the Eisel-Lemire algorithm.
+
+## [0.1.0] 2021-04-27
+### Added
+- Initial version.