ca1f1ba0e40fd61847766026e0c0e9e9dbd09b33e40fe3ce8145846f7d2fcd56ceab3bb05cde82cf0c36a2e083266f8ac840572f7a742eb829c045fb6d2a81 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. ### 1.11.0
  2. - Fix #232: update numbro.d.ts to use export = instead of export default. Thanks @olmobrutall.
  3. - Fix #241: Added bg localization. Thanks @gwynjudd.
  4. - Fix #248: Fix index.js generation for culture neutral codes. Thanks @gwynjudd.
  5. - Fix #255: Allow four character country code. Thanks @gwynjudd.
  6. - Fix #260: Added el localization. Thanks @gwynjudd.
  7. - Fix #269: Fix thousands and decimal separator for en-ZA. Thanks @gwynjudd.
  8. - Fix #271: Added es-CL localization. Thanks @gwynjudd.
  9. - Fix #272: Added es-CO localization. Thanks @gwynjudd.
  10. - Fix #273: Added es-CR localization. Thanks @gwynjudd.
  11. - Fix #274: Added es-NI localization. Thanks @gwynjudd.
  12. - Fix #275: Added es-PE localization. Thanks @gwynjudd.
  13. - Fix #276: Added es-PR localization. Thanks @gwynjudd.
  14. - Fix #277: Added es-SV localization. Thanks @gwynjudd.
  15. ### 1.10.1
  16. - Fix #239: Add de-AT localization. Thanks @gwynjudd.
  17. - Fix #242: Added de-LI localisation. Thanks @gwynjudd.
  18. - Fix #243: en-IE localization. Thanks @gwynjudd.
  19. - Fix #246: Added it-CH localization. Thanks @gwynjudd.
  20. - Fix #265: Revert Error thrown when invalid input. Thanks @BenjaminVanRyseghem.
  21. ### 1.10.0
  22. - Fix #213: Unhelpful Error Message with $ as Format String. Thanks @reustle.
  23. - Fix #221: update package.json license field. Thanks @mguida22.
  24. - Fix #190: Allow abbreviation precision for < 4. Thanks @chrisnicola.
  25. - Fix #227: Add Romanian locale. Thanks @herodrigues.
  26. - Fix #222: allow a decimal format for an integer. Thanks @mguida22.
  27. - Fix #233: Correct CZ and SK locales (finally). Thanks @smajl.
  28. - Fix #244: Fixes for fr-CH. Thanks @gwynjudd.
  29. - Fix #262: Better input validation. Thanks @BenjaminVanRyseghem.
  30. ### 1.9.3
  31. - Fix #184: Accurate, up-to-date type definitions for TypeScript. Thanks @dpoggi.
  32. - Fix #196: Fix german language specifications. Thanks @Ben305.
  33. - Fix #197: Add detection for Meteor. Thanks @Ben305.
  34. - Fix #206: fix number formats for de-CH. Thanks @Remo.
  35. ### 1.9.2
  36. - Fix #195: Fixed wrong results from formatForeignCurrency. Thanks @Ben305.
  37. ### 1.9.1
  38. - Add forgotten files
  39. ### 1.9.0
  40. - Fix #192: Add locales en-AU and en-NZ. Thanks @Ben305.
  41. - Fix #193: Add function formatForeignCurrency. Thanks @Ben305.
  42. - Fix #194: Fix undefined error on React native. Thanks @abalhier.
  43. ### 1.8.1
  44. - Fix #182: Added support for numbers without leading zero. Thanks @budnix.
  45. - Fix #183: Number validation doesn't validate negative numbers. Thanks @budnix.
  46. ### 1.8.0
  47. - Fix #180: Add culture function, deprecate language. Thanks @wereHamster.
  48. - Fix #170: Add the ability to determine units without formatting. Thanks @pickypg.
  49. - Fix #162: Add TypeScript declaration file. Thanks @wereHamster.
  50. - Fix #163: unformat: return undefined when value can't be parsed. Thanks @wereHamster.
  51. - Fix #173: Added two latest stable node versions to Travis build. Thanks @therebelrobot.
  52. - Fix #176: default pt-BR currency is prefix, not postfix. Thanks @luisrudge.
  53. - Fix #175: Zero byte unit fix, take 2. Thanks @therebelrobot.
  54. - Fix #135: Fix fr-CA currency format. Thanks @killfish.
  55. - Fix #174: Set versions for all deps. Thanks @BenjaminVanRyseghem.
  56. - Fix #152: Use zeros() function instead of multiple inline implementations. Thanks @MarkHerhold.
  57. ### 1.7.1
  58. - Fix #142: Limit packaging extraneous files. Thanks @MarkHerhold.
  59. - Fix #143: Fixing web build. Thanks @mmollick.
  60. - Fix #149: Allow loading of cultures in node explicitly if numbro hasn't detected correctly that it is in node. Thanks @stewart42.
  61. - Fix #147: Fixing formatting issues for very small (+/-1e-23) numbers. Thanks @MarkHerhold.
  62. ### 1.7.0
  63. - Fix decimal rounding issue. Thangrks @Shraymonks.
  64. - Fix #114: webpack bundling. Thanks @mmollick.
  65. - Add ko-KR & zh-TW support. Thanks @rocketedaway and @rWilander.
  66. - Add existence check for require. Thanks @jamiter.
  67. - Improve verbatim feature. Thanks @jneill.
  68. ### 1.6.2
  69. - Fix deprecated use of `language` and introduce `cultureCode`. Thanks @BenjaminVanRyseghem
  70. ### 1.6.1
  71. - Fix languages to use proper intPrecision. Thanks @BenjaminVanRyseghem
  72. - Fix `intPrecision` when value is 0. Thanks @BenjaminVanRyseghem
  73. ### 1.6.0
  74. - Introduce new API functions:
  75. - setCulture
  76. - culture
  77. - cultureData
  78. - cultures
  79. - Deprecate API functions:
  80. - setLanguage
  81. - language
  82. - languageData
  83. - languages
  84. Those deprecated functions will be removed in version 2.0.0
  85. ### 1.5.2
  86. - Fixed scoping issue. Thanks @tuimz
  87. - #68 Format decimal numbers. Thanks @BenjaminVanRyseghem
  88. - #70 v1.5.0 error with browserify. Thanks @BenjaminVanRyseghem
  89. - #71 Incorrectly reporting hasModule = true. Thanks @BenjaminVanRyseghem
  90. - #72 the currency symbol is $ which is a currency symbol already by itself (the dollar..). Thanks @BenjaminVanRyseghem
  91. - #76 ability to "pad" a number in formatting. Thanks @BenjaminVanRyseghem
  92. - #79 browserify attempts to load all language files. Thanks @BenjaminVanRyseghem
  93. - #106 Exception on large number formatting. Thanks @andrewla
  94. ### 1.5.1
  95. - #78 Why is 0 formatted as +0?. Thanks to @clayzermk1
  96. - #80 currency format "+$..." produces output "$+...". Thanks to @clayzermk1
  97. - Fixes German separator. Thanks to @gka
  98. ### 1.5.0
  99. - Adds support for Hebrew (he-LI). Thanks to @eli-zehavi
  100. ### 1.4.0
  101. - #62 using languages in node. Thanks @alexkwolfe
  102. ### 1.3.3
  103. - #64 multiply loses accuracy on minification. Thanks @rafde
  104. ### 1.3.2
  105. - Fix issue with the release process
  106. ### 1.3.1
  107. - Fix context issue when in strict mode. Thanks @avetisk
  108. ### 1.3.0
  109. - #53 Max significant numbers formating. Thanks @BenjaminVanRyseghem
  110. - #57 Broken reference to this in languages. Thanks @BenjaminVanRyseghem
  111. ### 1.2.2
  112. - Remove old minified files
  113. ### 1.2.1
  114. - Forgot to build when published
  115. ### 1.2.0
  116. - #27 Binary and decimal bytes. Thanks @clayzermk1 and @Graham42
  117. - #26 Jshint improvemnents. Thanks @baer and @Graham42
  118. - Fixes french ordinal. Thanks @BenjaminVanRyseghem
  119. - #32 Use svg instead of png to get better image quality. Thanks @PeterDaveHello
  120. - #33 Correct culture code for Español. Thanks @maheshsenni
  121. - #34 Clean up locales info. Thanks @Graham42
  122. - #36 Improve `dist/` layout. Thanks @Graham42
  123. - #35 Correct Polish currency symbol. Thanks @Graham42
  124. - Fixes Swedish tests. Thanks @BenjaminVanRyseghem
  125. - Fixes inconsistent white spaces. Thanks @BenjaminVanRyseghem
  126. - #44 Tests for culture code format. Thanks @maheshsenni
  127. - #50 added en-ZA language. Thanks @stewart42
  128. ### 1.1.1
  129. - Fixes minified version number. Thanks @BenjaminVanRyseghem
  130. - Removes old minified files. Thanks @Graham42
  131. ### 1.1.0
  132. - Adds `languages` to expose all registered languages. Thanks @NicolasPetton
  133. - Adds support for filipino. Thanks @Graham42 and @mjmaix
  134. - Adds support for farsi. Thanks @Graham42 and @neo13
  135. ### 1.0.5
  136. - Improves release process. Thanks @Graham42
  137. - Updates the `README` file. Thanks @Graham42
  138. - Fixes Danish currency symbol. Thanks @Graham42 and @philostler
  139. - Fixes npm/bower dependencies. Thanks @BenjaminVanRyseghem
  140. - Cleans up Numeral-js leftovers. Thanks @uniphil
  141. - Updates homepage url. Thanks @BenjaminVanRyseghem
  142. - Rebases on Numeraljs to keep git history. Thanks @uniphil @Graham42
  143. ### 1.0.4
  144. Fork `numeraljs` v1.5.3, renaming everything to `numbro`
  145. ----
  146. _For changes before `numbro` forked [`numeral-js`](https://github.com/adamwdraper/Numeral-js), see [CHANGELOG-Numeraljs.md](CHANGELOG-Numeraljs.md)._