Skip to content

Releases: thiagodp/intl-number-helper

v1.2.3

15 Feb 18:21
Compare
Choose a tag to compare

What's new:

  • Remove .map files from the npm tarball

v1.2.0

15 Feb 18:21
Compare
Choose a tag to compare

What's new:

  • Update dependencies
  • Change from TravisCI to GitHub Actions

v1.1.3

16 Jun 20:14
Compare
Choose a tag to compare

Working in browser, NodeJS and DenoJS

v1.0.1

12 Jun 07:29
Compare
Choose a tag to compare

Add 100% test coverage (no changes to the lib itself)

v1.0.0

12 Jun 05:31
Compare
Choose a tag to compare

Changes:

  1. New pattern for ranges (easier to read). BREAKING CHANGE.
  • Before:
    • 1:2 means 1 as minimum and 2 as maximum.
    • maximum alone is possible, e.g., :2.
  • Now:
    • 1-2 means 1 as minimum and 2 as maximum.
    • minimum must be defined to define the maximum. e.g., 1-2.
  1. Grouping disabling character (#) is now separated from the fraction character (.) and they are now written independently. BREAKING CHANGE.
  • Before:
    • When used along with ranges, the grouping character replaced the fraction separator. Example: 7#1
  • Now:
    • Grouping is not mixed with ranges and should be declared before them. Example: #7.1