From fee4e13f66d490e6a4afd0ab0418193e25c8dc4d Mon Sep 17 00:00:00 2001 From: Gleb Mazovetskiy Date: Sun, 8 May 2022 06:48:09 +0100 Subject: [PATCH] Bump to v1.0.10 --- CHANGES.md | 6 ++++++ README.md | 2 +- lib/i18n/tasks/version.rb | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 6580e0b0..d07e9cab 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,9 @@ +## v1.0.10 + +* Fixes `relative_exclude_method_name_paths`. + Previously, the code used `exclude_method_name_paths` instead of `relative_exclude_method_name_paths`. + [#454](https://github.com/glebm/i18n-tasks/pull/454) + ## v1.0.9 * Adds an optional AST matcher for Rails model translations, such as `human_attribute_name`. diff --git a/README.md b/README.md index 4c1f00c6..a441c91f 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.9' +gem 'i18n-tasks', '~> 1.0.10' ``` Copy the default [configuration file](#configuration): diff --git a/lib/i18n/tasks/version.rb b/lib/i18n/tasks/version.rb index 7f785aba..1a3a5108 100644 --- a/lib/i18n/tasks/version.rb +++ b/lib/i18n/tasks/version.rb @@ -2,6 +2,6 @@ module I18n module Tasks - VERSION = '1.0.9' + VERSION = '1.0.10' end end