Skip to content

Commit

Permalink
Bump to v1.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
glebm committed Sep 18, 2022
1 parent 497454f commit deba888
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## v1.0.12

* The heuristic for detecting non-plural keys that look like plural keys has been removed
because it was causing other issues. Please use `ignore_missing` to handle such keys.
[#461](https://github.com/glebm/i18n-tasks/issues/461)
* Adds support for plural default values,
e.g. `t('test', default: { one: '1', other: '2' })`.
[#464](https://github.com/glebm/i18n-tasks/issues/464)
* Adds the `-p` pattern option to the `missing`, `add-missing`, and `translate-missing` commands.
[#469](https://github.com/glebm/i18n-tasks/issues/469)
* Relaxes version restriction for the `better_html` depedency to allow v2.x.
[#471](https://github.com/glebm/i18n-tasks/pull/471)
* Support filenames where locale is separated by a `-`, e.g. `user-en.yml` instead of the usual `user.en.yml`.
[#467](https://github.com/glebm/i18n-tasks/pull/467)

## v1.0.11

* Fixes `--config` command line flag.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.11'
gem 'i18n-tasks', '~> 1.0.12'
```

Copy the default [configuration file](#configuration):
Expand Down
2 changes: 1 addition & 1 deletion lib/i18n/tasks/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module I18n
module Tasks
VERSION = '1.0.11'
VERSION = '1.0.12'
end
end

0 comments on commit deba888

Please sign in to comment.