CHANGELOG.md in dry-schema-1.1.0 vs CHANGELOG.md in dry-schema-1.2.0
- old
+ new
@@ -1,8 +1,31 @@
+# v1.2.0 2019-06-13
+
+### Added
+
+* Ability to configure your own type container (@Morozzzko)
+
+### Fixed
+
+* `filled` macro no longer generates incorrect messages for arrays (issue #151) (@solnic)
+* `filled` macro works correctly with constructor types (@solnic)
+* `filled` works correctly with nested schemas (#149) (@solnic + @timriley)
+* Custom array constructors are no longer discredited by `array` macro (@solnic)
+* `BigDecimal` type is correctly handled by predicate inference (@solnic)
+* Works with latest `dry-logic` which provides the new `respond_to?` predicate (#153) (@flash-gordon)
+
+### Changed
+
+* Fixes related to `filled` restored pre-1.1.0 behavior of `:hints` which are again included (@solnic)
+* `filled` no longer uses filter rules to handle empty strings in `Params` (@solnic)
+
+[Compare v1.1.0...v1.2.0](https://github.com/dry-rb/dry-schema/compare/v1.1.0...v1.2.0)
+
# v1.1.0 2019-05-30
### Added
+* `config.messages.default_locale` for setting...default locale (surprise, surprise) (solnic)
* `Config` exposes `predicates` setting too (solnic)
### Fixed
* `filled` macro behavior results in `must be filled` error messages when appropriate - see PR #141 for more information (issue #134) (solnic)