Skip to content

Commit

Permalink
version 2.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
huacnlee committed Oct 15, 2020
1 parent e21f77d commit ea4b0b8
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 2.3.2

- Fix hash type with indifferent access.

```rb
Setting.smtp_settings = { foo: 1, bar: 2 }
Setting.smtp_settings[:foo]
=> 1
Setting.smtp_settings["foo"]
=> 1
```

## 2.3.1

- Add `get_field` method to get field option.
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
rails-settings-cached (2.3.1)
rails-settings-cached (2.3.2)
rails (>= 4.2.0)
request_store

Expand Down
2 changes: 1 addition & 1 deletion lib/rails-settings/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module RailsSettings
class << self
def version
"2.3.1"
"2.3.2"
end
end
end

0 comments on commit ea4b0b8

Please sign in to comment.