This commit is contained in:
Jorge Aparicio 2018-07-14 16:58:24 -05:00
parent c7804c6968
commit 802f6a2b46
2 changed files with 38 additions and 2 deletions

View file

@ -5,8 +5,44 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
## [v0.1.1] - 2018-07-14
### Added
- acos
- acosf
- asin
- asinf
- atanf
- cbrt
- cbrtf
- ceil
- ceilf
- cosf
- exp
- exp2
- exp2f
- expm1
- expm1f
- fdim
- fdimf
- floorf
- fma
- fmod
- log
- log2
- log10
- log10f
- log1p
- log1pf
- log2f
- roundf
- sinf
- tanf
## v0.1.0 - 2018-07-13
- Initial release
[Unreleased]: https://github.com/japaric/libm/compare/v0.1.0...HEAD
[Unreleased]: https://github.com/japaric/libm/compare/v0.1.1...HEAD
[v0.1.1]: https://github.com/japaric/libm/compare/v0.1.0...v0.1.1

View file

@ -7,7 +7,7 @@ keywords = ["libm", "math"]
license = "MIT OR Apache-2.0"
name = "libm"
repository = "https://github.com/japaric/libm"
version = "0.1.0"
version = "0.1.1"
[workspace]
members = ["cb", "test-generator"]