Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 5.0.0.rc1 #278

Merged
merged 1 commit into from
Mar 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
# Changelog

## 4.0.0 (2020-06-13)
## 5.0.0.rc1 - 2023-03-23

* `shoulda` now relies upon `shoulda-matchers` 5.x. You can find changes to
`shoulda-matchers` in its [changelog][shoulda-matchers-5-3-0-changelog].
* Support for Ruby < 3 and Rails < 6.1 have been dropped due to being EOL.
* Support for Ruby 3.0, 3.1, and 3.2 as well as Rails 6.1 and 7.0 have been
added.

[shoulda-matchers-5-3-0-changelog]: https://github.com/thoughtbot/shoulda-matchers/blob/v5.3.0/CHANGELOG.md

## 4.0.0 - 2020-06-13

* `shoulda` now brings in `shoulda-context` 2.0.0, which adds compatibility for
Ruby 2.7, Rails 6.0, and shoulda-matchers 4.0! Note that there are some
Expand Down
2 changes: 1 addition & 1 deletion lib/shoulda/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Shoulda
VERSION = '4.0.0'.freeze
VERSION = '5.0.0.rc1'.freeze
end