Skip to content

Commit ea4b0b8

Browse files
committed
version 2.3.2
1 parent e21f77d commit ea4b0b8

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 2.3.2
2+
3+
- Fix hash type with indifferent access.
4+
5+
```rb
6+
Setting.smtp_settings = { foo: 1, bar: 2 }
7+
Setting.smtp_settings[:foo]
8+
=> 1
9+
Setting.smtp_settings["foo"]
10+
=> 1
11+
```
12+
113
## 2.3.1
214

315
- Add `get_field` method to get field option.

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
rails-settings-cached (2.3.1)
4+
rails-settings-cached (2.3.2)
55
rails (>= 4.2.0)
66
request_store
77

lib/rails-settings/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module RailsSettings
44
class << self
55
def version
6-
"2.3.1"
6+
"2.3.2"
77
end
88
end
99
end

0 commit comments

Comments
 (0)