Skip to content

Commit

Permalink
Bump to v1.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
glebm committed Apr 10, 2022
1 parent 31ba3e8 commit d9824a5
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## v1.0.9

* Adds an optional AST matcher for Rails model translations, such as `human_attribute_name`.

Can be enabled by adding the following to the config:

```erb
<% I18n::Tasks.add_ast_matcher('I18n::Tasks::Scanners::AstMatchers::RailsModelMatcher') %>
```

[#433](https://github.com/glebm/i18n-tasks/pull/433)

## v1.0.8

* Fixes a crash in `strict: false` mode.
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.8'
gem 'i18n-tasks', '~> 1.0.9'
```

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.8'
VERSION = '1.0.9'
end
end

0 comments on commit d9824a5

Please sign in to comment.