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
      
    </