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

chore: Adjust documentation typos [skip ci] #1597

Merged
merged 1 commit into from
Dec 23, 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
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 6.0.0 - 2022-12-22
## 6.0.0 - 2023-12-22

### Backward-incompatible changes

Expand All @@ -22,6 +22,7 @@ The gem now supports Ruby 3.0+ and Rails 6.1+. ([#1521], [#1522], [#1547], [#154

### Features
* Add normalize matcher by @stephannv. ([#1558])
* Add validates_comparison_of matcher by @matsales28. ([#1552])
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I noticed that we forgot to add this feature on the changelog

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ouch, nice catch! Thank you!

* Add support for Ruby 3.2 by @petergoldstein. ([#1536])
* Add support for Ruby 3.3.0-rc1 by @mtasaka and @VSPPedro. ([#1579], [#1588])
* Add support for Rails 7.1 by @matsales28. ([#1573])
Expand All @@ -32,6 +33,7 @@ The gem now supports Ruby 3.0+ and Rails 6.1+. ([#1521], [#1522], [#1547], [#154

[#1536]: https://github.com/thoughtbot/shoulda-matchers/pull/1536
[#1542]: https://github.com/thoughtbot/shoulda-matchers/pull/1542
[#1552]: https://github.com/thoughtbot/shoulda-matchers/pull/1552
[#1555]: https://github.com/thoughtbot/shoulda-matchers/pull/1555
[#1558]: https://github.com/thoughtbot/shoulda-matchers/pull/1558
[#1560]: https://github.com/thoughtbot/shoulda-matchers/pull/1560
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Start by including `shoulda-matchers` in your Gemfile:

```ruby
group :test do
gem 'shoulda-matchers', '~> 5.0'
gem 'shoulda-matchers', '~> 6.0'
end
```

Expand Down Expand Up @@ -117,7 +117,7 @@ Otherwise, add `shoulda-matchers` to your Gemfile:

```ruby
group :test do
gem 'shoulda-matchers', '~> 5.0'
gem 'shoulda-matchers', '~> 6.0'
end
```

Expand Down