From 4cfa6e779980e8561d5a56b5aaf5fba96037f226 Mon Sep 17 00:00:00 2001 From: Matheus Sales Date: Fri, 22 Dec 2023 16:41:03 -0300 Subject: [PATCH] release: Bump version to 6.0.0 [skip ci] (#1595) --- CHANGELOG.md | 2 +- README.md | 2 ++ lib/shoulda/matchers/version.rb | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) 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