File: CHANGELOG

package info (click to toggle)
rustc 1.85.0%2Bdfsg2-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 893,176 kB
  • sloc: xml: 158,127; python: 35,830; javascript: 19,497; cpp: 19,002; sh: 17,245; ansic: 13,127; asm: 4,376; makefile: 1,051; lisp: 29; perl: 29; ruby: 19; sql: 11
file content (38 lines) | stat: -rw-r--r-- 1,148 bytes parent folder | download | duplicates (43)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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.