All Versions
10
Latest Version
Avg Release Cycle
126 days
Latest Release
1329 days ago
Changelog History
Changelog History
-
v0.13.0 Changes
October 18, 2019Converted 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 -
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, 2017What 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 #5Thanks @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 generatingmod10 < 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! - corrected handling of single quote in date formats, index was off
-
v0.10.0 Changes
September 12, 2016What'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 astring
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 )
- variables are now stored as