Skip to content

Commit

Permalink
Merge tag '0.8.3'
Browse files Browse the repository at this point in the history
plurals fix
  • Loading branch information
mashpie committed Jun 21, 2016
2 parents 95d5db7 + 523fa8e commit a74afa5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -946,6 +946,8 @@ i18n.configure({

## Changelog

* 0.8.3:
+ __fixed__: #235 objectNotation, #231 Plurals support regions ("en-US", "de-DE")
* 0.8.2:
* __fixed__: typos, objectNotation mutator #226, accept-language headers with fallback #228
* 0.8.1:
Expand Down
4 changes: 2 additions & 2 deletions i18n.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @link https://github.com/mashpie/i18n-node
* @license http://opensource.org/licenses/MIT
*
* @version 0.8.2
* @version 0.8.3
*/

'use strict';
Expand Down Expand Up @@ -66,7 +66,7 @@ module.exports = (function() {

i18n.locales = locales;

i18n.version = '0.8.2';
i18n.version = '0.8.3';

i18n.configure = function i18nConfigure(opt) {

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "i18n",
"description": "lightweight translation module with dynamic json storage",
"version": "0.8.2",
"version": "0.8.3",
"homepage": "http://github.com/mashpie/i18n-node",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion test/i18n.setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ i18n.configure({

describe('Module Setup', function () {
it('should export a valid version', function () {
should.equal(i18n.version, '0.8.2');
should.equal(i18n.version, '0.8.3');
});

it('should export configure as i18nConfigure', function () {
Expand Down

0 comments on commit a74afa5

Please sign in to comment.