diff --git a/CHANGES.md b/CHANGES.md index 5eebd7b4..0d1a4947 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,4 @@ -## 0.7.13 (unreleased) +## 0.7.13 * Fix relative keys when controller name consists of more than one word by [Yuji Nakayama](https://github.com/yujinakayama) [#132](https://github.com/glebm/i18n-tasks/pull/132). * Support keys with UTF8 word characters in the name. [#133](https://github.com/glebm/i18n-tasks/issues/133). diff --git a/README.md b/README.md index 4061b6d6..4821c0e1 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 it to the Gemfile: ```ruby -gem 'i18n-tasks', '~> 0.7.12' +gem 'i18n-tasks', '~> 0.7.13' ``` Copy default [configuration file](#configuration) (optional): diff --git a/lib/i18n/tasks/version.rb b/lib/i18n/tasks/version.rb index 8ba166c8..6941ec7a 100644 --- a/lib/i18n/tasks/version.rb +++ b/lib/i18n/tasks/version.rb @@ -1,6 +1,6 @@ # coding: utf-8 module I18n module Tasks - VERSION = '0.7.12' + VERSION = '0.7.13' end end