diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b753701a..2b98438a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 6.0.0 - 2022-12-22 ### Backward-incompatible changes diff --git a/README.md b/README.md index 9ef7fe373..22544f40b 100644 --- a/README.md +++ b/README.md @@ -409,6 +409,8 @@ about any of them, make sure to [consult the documentation][rubydocs]! usage of the `serialize` macro. * **[validate_uniqueness_of](lib/shoulda/matchers/active_record/validate_uniqueness_of_matcher.rb)** tests usage of `validates_uniqueness_of`. +* **[normalize](lib/shoulda/matchers/active_record/normalize_matcher.rb)** tests + usage of the `normalize` macro ### ActionController matchers diff --git a/lib/shoulda/matchers/version.rb b/lib/shoulda/matchers/version.rb index d5c54d3ff..f6aa306a1 100644 --- a/lib/shoulda/matchers/version.rb +++ b/lib/shoulda/matchers/version.rb @@ -1,6 +1,6 @@ module Shoulda module Matchers # @private - VERSION = '5.3.0'.freeze + VERSION = '6.0.0'.freeze end end