From c320bdc8149e4d78f979e3aa5c52ebfe97418868 Mon Sep 17 00:00:00 2001 From: Pedro Paiva Date: Sat, 10 Jul 2021 08:39:19 -0300 Subject: [PATCH] Bump version to 5.0.0 (#1455) --- CHANGELOG.md | 2 +- README.md | 2 +- lib/shoulda/matchers/version.rb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7dad9f708..fa6511980 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 5.0.0 - 2021-07-09 ### Bug fixes diff --git a/README.md b/README.md index 923039dd7..317b5d2c3 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ Start by including `shoulda-matchers` in your Gemfile: ```ruby group :test do - gem 'shoulda-matchers', '~> 4.0' + gem 'shoulda-matchers', '~> 5.0' end ``` diff --git a/lib/shoulda/matchers/version.rb b/lib/shoulda/matchers/version.rb index 5be1b7a87..4b50d7f08 100644 --- a/lib/shoulda/matchers/version.rb +++ b/lib/shoulda/matchers/version.rb @@ -1,6 +1,6 @@ module Shoulda module Matchers # @private - VERSION = '5.0.0.rc1'.freeze + VERSION = '5.0.0'.freeze end end