diff --git a/CHANGES.md b/CHANGES.md index afa2aee5..97ce5443 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,10 @@ +## v1.0.4 + +* Fixes handling of ERB comments without a space between `%` and `#` (`<%# ... %>`). + [#429](https://github.com/glebm/i18n-tasks/pull/429) +* Better support for the `it` gem. + [#361](https://github.com/glebm/i18n-tasks/issues/361) + ## v1.0.3 * Fixes inline block handling in ERB files. diff --git a/README.md b/README.md index 17e40249..347b13bc 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.3' +gem 'i18n-tasks', '~> 1.0.4' ``` Copy the default [configuration file](#configuration): diff --git a/lib/i18n/tasks/version.rb b/lib/i18n/tasks/version.rb index ef571415..a7aead3d 100644 --- a/lib/i18n/tasks/version.rb +++ b/lib/i18n/tasks/version.rb @@ -2,6 +2,6 @@ module I18n module Tasks - VERSION = '1.0.3' + VERSION = '1.0.4' end end