From ef94e1ab4b236d53608dcc96740d2900a949a2b3 Mon Sep 17 00:00:00 2001 From: Gleb Mazovetskiy Date: Tue, 18 Sep 2018 04:52:54 +0100 Subject: [PATCH] Bump to v0.9.25 --- CHANGES.md | 12 ++++++++++++ README.md | 2 +- lib/i18n/tasks/version.rb | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 12358955..1feb213f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,15 @@ +## v0.9.25 + +* Adds an optional `--keep-order` (`-k`) parameter to `remove-unused`. + When passed, keys in the files are not sorted after removing the unused keys. + [#297](https://github.com/glebm/i18n-tasks/pull/297) +* Drops support for Ruby < 2.3. + [#298](https://github.com/glebm/i18n-tasks/pull/298) +* Fixes a rare concurrency issue, most easily reproduced on Rubinius. + [#300](https://github.com/glebm/i18n-tasks/issues/300) +* Avoid Google / DeepL translating empty keys (a minor optimization). + [#fc529e78](https://github.com/glebm/i18n-tasks/commit/fc529e78d2421ad08e7a93c0164e5d0be1492e40) + ## v0.9.24 * Makes `deepl-rb` and `easy_translate` dependencies optional. diff --git a/README.md b/README.md index 14ac77b2..9ebeb42f 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,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.24' +gem 'i18n-tasks', '~> 0.9.25' ``` Copy the default [configuration file](#configuration): diff --git a/lib/i18n/tasks/version.rb b/lib/i18n/tasks/version.rb index f3f40db3..cce3523f 100644 --- a/lib/i18n/tasks/version.rb +++ b/lib/i18n/tasks/version.rb @@ -2,6 +2,6 @@ module I18n module Tasks - VERSION = '0.9.24' + VERSION = '0.9.25' end end