Skip to content

Commit 0bd442a

Browse files
committed
Release version 1.6.1
1 parent 0820c8d commit 0bd442a

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## Unreleased
44

5+
...
6+
7+
## 1.6.1
8+
9+
**Bug fixes:**
510
* Make dry-validation dependency less strict allowing to use newer versions ([#183](https://github.com/railsconfig/config/pull/183))
611
* Fix `key?` and `has_key?`, which raise NoMethodError in non Rails environment, by using ActiveSupport `#delegate` implicitly ([#185](https://github.com/railsconfig/config/pull/185))
712
* Update `deep_merge` dependency to latest version (v1.2.1) ([#191](https://github.com/railsconfig/config/pull/191))
@@ -10,35 +15,35 @@
1015

1116
## 1.6.0
1217

13-
**New features**
18+
**New features:**
1419

1520
* `Config#fail_on_missing` option (default `false`) to raise a `KeyError` exception when accessing a non-existing key
1621
* Add ability to test if a value was set for a given key with `key?` and `has_key?` ([#182](https://github.com/railsconfig/config/pull/182))
1722

1823
## 1.5.1
1924

20-
**New features**
25+
**New features:**
2126

2227
* Add parsing of ENV variable values to Boolean type ([#180](https://github.com/railsconfig/config/pull/180))
2328

2429
## 1.5.0
2530

26-
**New features**
31+
**New features:**
2732

2833
* Add ability to validate config schema ([#155](https://github.com/railsconfig/config/pull/155) thanks to [@ok32](https://github.com/ok32))
2934
* Add count to the reserved names list ([#167](https://github.com/railsconfig/config/pull/167) thanks to [@carbonin](https://github.com/carbonin))
3035

31-
**Bug fixes**
36+
**Bug fixes:**
3237

3338
* Correctly parse `env_prefix`, which contains `env_separator` ([#177](https://github.com/railsconfig/config/pull/177) thanks to [@rdodson41](https://github.com/rdodson41))
3439

3540
## 1.4.0
3641

37-
**New features**
42+
**New features:**
3843

3944
* Added support for passing a raw ruby hash into to both `Settings.add_source!` and `Settings.prepend_source!` ([#108](https://github.com/railsconfig/config/pull/159) thanks to [@halloffame](https://github.com/halloffame))
4045

41-
**Bug fixes**
46+
**Bug fixes:**
4247

4348
* Added new reserved name `test` ([#158](https://github.com/railsconfig/config/pull/158) thanks to [@milushov](https://github.com/milushov))
4449
* `to_hash` should not replace nested config objects with Hash ([#160](https://github.com/railsconfig/config/issues/160) thanks to [@seikichi](https://github.com/seikichi))

lib/config/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Config
2-
VERSION = '1.6.0'
2+
VERSION = '1.6.1'
33
end

0 commit comments

Comments
 (0)