diff --git a/CHANGES.md b/CHANGES.md index 188e08fb..df91ce7d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,7 +1,8 @@ -## 0.9.5 (unreleased) +## 0.9.5 * Add a `PatternMapper` scanner for mapping bits of code to keys [#191](https://github.com/glebm/i18n-tasks/issues/191). * Add missing keys with `nil` value by passing `--nil-value` to `add-missing`. [#170](https://github.com/glebm/i18n-tasks/issues/170) +* Requiring `i18n-tasks` no longer overrides `I18n.locale`. [#190](https://github.com/glebm/i18n-tasks/issues/190). ## 0.9.4 diff --git a/README.md b/README.md index 36683316..0d4a8be4 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ i18n-tasks can be used with any project using the ruby [i18n gem][i18n-gem] (def Add i18n-tasks to the Gemfile: ```ruby -gem 'i18n-tasks', '~> 0.9.4' +gem 'i18n-tasks', '~> 0.9.5' ``` Copy the default [configuration file](#configuration): diff --git a/lib/i18n/tasks/version.rb b/lib/i18n/tasks/version.rb index 94bd0e27..27e4d0af 100644 --- a/lib/i18n/tasks/version.rb +++ b/lib/i18n/tasks/version.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true module I18n module Tasks - VERSION = '0.9.4' + VERSION = '0.9.5' end end