diff --git a/README.md b/README.md index 23e3c6b9..d76f6ba6 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/i18n.js b/i18n.js index 67383f2a..edf9af2d 100644 --- a/i18n.js +++ b/i18n.js @@ -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'; @@ -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) { diff --git a/package.json b/package.json index e8127e63..e9a676e7 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/test/i18n.setup.js b/test/i18n.setup.js index aa8b020d..dca4b01a 100644 --- a/test/i18n.setup.js +++ b/test/i18n.setup.js @@ -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 () {