All Versions
10
Latest Version
Avg Release Cycle
126 days
Latest Release
1688 days ago

Changelog History

  • v0.13.0 Changes

    October 18, 2019

    Converted to using go modules.

  • v0.12.1 Changes

    March 23, 2018

    ๐Ÿ›  What was fixed

    ๐Ÿšš a leftover debug caused ru_test.go test to fail, it was removed and all is passing again.

  • v0.12.0 Changes

    March 22, 2018

    What's new?

    โšก๏ธ Updating to CLDR 32.0.1 thanks @vvohra for the PR #20

  • v0.11.2 Changes

    October 14, 2017

    ๐Ÿ›  What was fixed?

    โšก๏ธ Updated CLDR to 31.0.1;
    โž• Added test for russian;
    โž• Added methods Decimal, Group, Minus;
    ๐Ÿ”จ Refactoring: replaced
    l := len(s) + 0 + 0_len(s[:len(s)-int(v)-1])/3 => l := len(s) + 0;
    t.Year()_ -1 => -t.Year()

    Thanks @nicola-spb for the PR!

  • v0.11.1 Changes

    February 15, 2017

    ๐Ÿ›  What was fixed?

    Corrected English inheritance

    • old logic fell back to base locale when data could not be found; now it attempts to find via inheritance cross reference and then fallback if necessary.

    Thanks @martin-css for reporting issue #7

  • v0.11.0 Changes

    February 09, 2017

    What was changed?

    • Regenerated locale data from v30.0.3 CLDR data
    • โž• Added negative year check for FmtDataXXX functions with 4 digit years
    • โšก๏ธ update ru_RU test to handle change of short date format from v29 dd.MM.yy to v30 dd.MM.y
  • v0.10.3 Changes

    November 23, 2016

    ๐Ÿ›  What was fixed

    โšก๏ธ locale generation code was updated to try and use DefaultNumberingSystem if it exists, fixed #5

    Thanks @dvorakluk

  • v0.10.2 Changes

    November 08, 2016

    ๐Ÿ›  What was fixed?

    • corrected handling of single quote in date formats, index was off
      causing quotes to appear in date text
    • corrected bug in plurals rules mod != rules were generating mod10 < 12 && mod10 > 14, when it should be (mod10 < 12 || mod10 > 14)
    • โž• added code to sort plural rules, no real issue just now print in order
    • override Russian percent format CLDR contains space between # and %
      but should be no space.

    What was added?

    โœ… Tests for ru_RU(Russian) were added by @nikolay-turpitko thanks again!

  • v0.10.0 Changes

    September 12, 2016

    What's New?

    • โž• Added generated tests, just need help from persons with locale knowledge to fill in the test cases
  • v0.9.1 Changes

    September 11, 2016

    ๐Ÿ›  What's changed/was fixed?

    • variables are now stored as string instead of []byte appending a string to a byte array is faster that appending another []byte...who knew
    • l10n functions such as FmtNumber, FmtCurrency... now return string instead of []byte for easier use and potential optimization for the backend in the future ( if needed )