From c75f7745cae705ef4d62f7c2cedcd0159b1dda05 Mon Sep 17 00:00:00 2001 From: Gleb Mazovetskiy Date: Fri, 10 May 2024 11:47:10 +0900 Subject: [PATCH] Bump to v1.0.14 --- CHANGES.md | 20 ++++++++++++++++---- README.md | 2 +- lib/i18n/tasks/version.rb | 2 +- 3 files changed, 18 insertions(+), 6 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 90f3ed54..e1bb5e88 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,7 +1,19 @@ -## Unreleased - -* ERB AST-scanner now uses regex instead of better_html to allow - parsing files other than HTML. +## v1.0.14 + +* Newlines are now preserved when using Google Translate. + [#567](https://github.com/glebm/i18n-tasks/pull/567) +* Improved locale name handling for Google Translate. + [#558](https://github.com/glebm/i18n-tasks/pull/558) +* Fixes compatibility with some versions of the i18n gem. + [#553](https://github.com/glebm/i18n-tasks/pull/553) +* Added `i18n-tasks cp` command. + [#551](https://github.com/glebm/i18n-tasks/pull/551) +* Parentheses in keys are now supported. + [#550](https://github.com/glebm/i18n-tasks/pull/550) +* Non-HTML ERB files are now supported. + [#545](https://github.com/glebm/i18n-tasks/pull/545) +* Improved interpolations handling for DeepL. + [#523](https://github.com/glebm/i18n-tasks/pull/523) ## v1.0.13 diff --git a/README.md b/README.md index 631432d4..7066ec93 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', '~> 1.0.13', group: :development +gem 'i18n-tasks', '~> 1.0.14', group: :development ``` Copy the default [configuration file](#configuration): diff --git a/lib/i18n/tasks/version.rb b/lib/i18n/tasks/version.rb index a58e2fda..45b51ea7 100644 --- a/lib/i18n/tasks/version.rb +++ b/lib/i18n/tasks/version.rb @@ -2,6 +2,6 @@ module I18n module Tasks - VERSION = '1.0.13' + VERSION = '1.0.14' end end