1# Change Log
2
3All notable changes to this project will be documented in this file.
4This project adheres to [Semantic Versioning](http://semver.org/).
5
6## [Unreleased]
7
8...
9
10## [v0.2.1] - 2019-11-22
11
12### Fixed
13- sincosf
14
15## [v0.2.0] - 2019-10-18
16
17### Added
18- Benchmarks
19- signum
20- remainder
21- remainderf
22- nextafter
23- nextafterf
24
25### Fixed
26- Rounding to negative zero
27- Overflows in rem_pio2 and remquo
28- Overflows in fma
29- sincosf
30
31### Removed
32- F32Ext and F64Ext traits
33
34## [v0.1.4] - 2019-06-12
35
36### Fixed
37- Restored compatibility with Rust 1.31.0
38
39## [v0.1.3] - 2019-05-14
40
41### Added
42
43- minf
44- fmin
45- fmaxf
46- fmax
47
48## [v0.1.2] - 2018-07-18
49
50### Added
51
52- acosf
53- asin
54- asinf
55- atan
56- atan2
57- atan2f
58- atanf
59- cos
60- cosf
61- cosh
62- coshf
63- exp2
64- expm1
65- expm1f
66- expo2
67- fmaf
68- pow
69- sin
70- sinf
71- sinh
72- sinhf
73- tan
74- tanf
75- tanh
76- tanhf
77
78## [v0.1.1] - 2018-07-14
79
80### Added
81
82- acos
83- acosf
84- asin
85- asinf
86- atanf
87- cbrt
88- cbrtf
89- ceil
90- ceilf
91- cosf
92- exp
93- exp2
94- exp2f
95- expm1
96- expm1f
97- fdim
98- fdimf
99- floorf
100- fma
101- fmod
102- log
103- log2
104- log10
105- log10f
106- log1p
107- log1pf
108- log2f
109- roundf
110- sinf
111- tanf
112
113## v0.1.0 - 2018-07-13
114
115- Initial release
116
117[Unreleased]: https://github.com/japaric/libm/compare/v0.2.1...HEAD
118[v0.2.1]: https://github.com/japaric/libm/compare/0.2.0...v0.2.1
119[v0.2.0]: https://github.com/japaric/libm/compare/0.1.4...v0.2.0
120[v0.1.4]: https://github.com/japaric/libm/compare/0.1.3...v0.1.4
121[v0.1.3]: https://github.com/japaric/libm/compare/v0.1.2...0.1.3
122[v0.1.2]: https://github.com/japaric/libm/compare/v0.1.1...v0.1.2
123[v0.1.1]: https://github.com/japaric/libm/compare/v0.1.0...v0.1.1
124