From 6228a065941d21570ee642a3a4e7598e7fd5a74a Mon Sep 17 00:00:00 2001 From: Gleb Mazovetskiy Date: Tue, 10 Mar 2020 06:12:37 +0000 Subject: [PATCH] Bump to v0.9.31 + changelog --- CHANGES.md | 7 +++++++ README.md | 2 +- lib/i18n/tasks/version.rb | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index dbadd6b0..4e149c15 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,10 @@ +## v0.9.31 + +* Add Yandex translator backend. + [#343](https://github.com/glebm/i18n-tasks/pull/343) +* Fix more Ruby 2.7 warnings. + [#344](https://github.com/glebm/i18n-tasks/pull/344) + ## v0.9.30 * Fix keyword arguments warnings in Ruby 2.7. diff --git a/README.md b/README.md index c83a7021..fd3182f7 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.30' +gem 'i18n-tasks', '~> 0.9.31' ``` Copy the default [configuration file](#configuration): diff --git a/lib/i18n/tasks/version.rb b/lib/i18n/tasks/version.rb index 8c921355..b33b8562 100644 --- a/lib/i18n/tasks/version.rb +++ b/lib/i18n/tasks/version.rb @@ -2,6 +2,6 @@ module I18n module Tasks - VERSION = '0.9.30' + VERSION = '0.9.31' end end