Skip to content

Latest commit

 

History

History
212 lines (114 loc) · 4.71 KB

CHANGELOG.md

File metadata and controls

212 lines (114 loc) · 4.71 KB

CHANGELOG

Package changelog.

0.3.0 (2024-07-28)

Features

  • fe25386 - add C implementation for math/base/special/floorsd (#2603)

BREAKING CHANGES

  • 691e774: The base parameter must now be provided explicitly.

    • Previously, the base parameter had a default value of 10. Now it has to be supplied explicitly. Before:
      var v = floorsd( 3.141592653589793, 5 );
      // returns 3.1415
      
      After:
      var v = floorsd( 3.141592653589793, 5, 10 );
      // returns 3.1415
      

Commits

  • 2777e4b - bench: resolve lint errors in benchmarks (by Athan Reines)
  • 8de8d90 - refactor: perform explicit cast (#2642) (by Gunj Joshi)
  • ead1c3b - chore: update package meta data (#2640) (by stdlib-bot, Athan Reines)
  • b063947 - refactor: reduce code complexity (#2632) (by Gunj Joshi, Athan Reines)
  • 691e774 - refactor: make base parameter compulsory in math/base/special/floorsd (#2617) (by Gunj Joshi)
  • fe25386 - feat: add C implementation for math/base/special/floorsd (#2603) (by Gunj Joshi)

Contributors

A total of 2 people contributed to this release. Thank you to the following contributors:

  • Athan Reines
  • Gunj Joshi

0.2.1 (2024-02-24)

No changes reported for this release.

0.2.0 (2024-02-14)

No changes reported for this release.

0.1.0 (2023-09-24)

Features

  • 58832ee - update minimum TypeScript version

BREAKING CHANGES

  • 58832ee: update minimum TypeScript version to 4.1

    • To migrate, users should upgrade their TypeScript version to at least version 4.1.

Commits

  • 58832ee - feat: update minimum TypeScript version (by Philipp Burckhardt)

Contributors

A total of 1 person contributed to this release. Thank you to this contributor:

  • Philipp Burckhardt

0.0.6 (2022-02-16)

No changes reported for this release.

0.0.5 (2021-08-22)

No changes reported for this release.

0.0.4 (2021-07-07)

No changes reported for this release.

0.0.3 (2021-06-27)

No changes reported for this release.

0.0.2 (2021-06-16)

No changes reported for this release.

0.0.1 (2021-06-15)

No changes reported for this release.