1
- # Change Log
1
+ # Changelog
2
2
3
3
All notable changes to this project will be documented in this file.
4
- This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
4
+
5
+ The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
+ and this project adheres to
7
+ [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
5
8
6
9
## [ Unreleased]
7
10
8
- ...
11
+ ## [ 0.2.9] ( https://github.com/rust-lang/libm/compare/libm-v0.2.8...libm-v0.2.9 ) - 2024-10-26
12
+
13
+ ### Fixed
14
+
15
+ - Update exponent calculations in nextafter to match musl
16
+
17
+ ### Changed
18
+
19
+ - Update licensing to MIT AND (MIT OR Apache-2.0), as this is derivative from
20
+ MIT-licensed musl.
21
+ - Set edition to 2021 for all crates
22
+ - Upgrade all dependencies
23
+
24
+ ### Other
25
+
26
+ - Don't deny warnings in lib.rs
27
+ - Rename the ` musl-bitwise-tests ` feature to ` test-musl-serialized `
28
+ - Rename the ` musl-reference-tests ` feature to ` musl-bitwise-tests `
29
+ - Move ` musl-reference-tests ` to a new ` libm-test ` crate
30
+ - Add a ` force-soft-floats ` feature to prevent using any intrinsics or
31
+ arch-specific code
32
+ - Deny warnings in CI
33
+ - Fix ` clippy::deprecated_cfg_attr ` on compiler_builtins
34
+ - Corrected English typos
35
+ - Remove unneeded ` extern core ` in ` tgamma `
36
+ - Allow internal_features lint when building with "unstable"
9
37
10
38
## [ v0.2.1] - 2019-11-22
11
39
12
40
### Fixed
41
+
13
42
- sincosf
14
43
15
44
## [ v0.2.0] - 2019-10-18
16
45
17
46
### Added
47
+
18
48
- Benchmarks
19
49
- signum
20
50
- remainder
@@ -23,17 +53,20 @@ This project adheres to [Semantic Versioning](http://semver.org/).
23
53
- nextafterf
24
54
25
55
### Fixed
56
+
26
57
- Rounding to negative zero
27
58
- Overflows in rem_pio2 and remquo
28
59
- Overflows in fma
29
60
- sincosf
30
61
31
62
### Removed
63
+
32
64
- F32Ext and F64Ext traits
33
65
34
66
## [ v0.1.4] - 2019-06-12
35
67
36
68
### Fixed
69
+
37
70
- Restored compatibility with Rust 1.31.0
38
71
39
72
## [ v0.1.3] - 2019-05-14
0 commit comments