Skip to content

Commit

Permalink
Release version 4.2.0 (#1268)
Browse files Browse the repository at this point in the history
### Features

* Add support for `optional: false` in `belongs_to` associations. ([#1237])
* Add support for associations with `inverse_of: false` and non-standard foreign key ([#1106])

### Bug fixes
* Fix typos in documentation of `allow_values` ([#1241])
* Fix appraisal command in CONTRIBUTING.md file ([#1253])

### Improvements
* Remove minitest reporters dependency ([#1251])
* Development dependency updates

[#1106]: #1106
[#1237]: #1237
[#1241]: #1241
[#1253]: #1253
  • Loading branch information
guialbuk authored Jan 9, 2020
1 parent a9f9192 commit 068b0e7
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.6.3
2.6.5
1 change: 1 addition & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ruby 2.6.5
22 changes: 22 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
# 4.2.0

### Features

* Add support for `optional: false` in `belongs_to` associations. ([#1237])
* Add support for associations with `inverse_of: false` and non-standard foreign key ([#1106])

### Bug fixes

* Fix typos in documentation of `allow_values` ([#1241])
* Fix appraisal command in CONTRIBUTING.md file ([#1253])

### Improvements

* Remove `minitest-reporters` dependency ([#1251])
* Development dependency updates

[#1106]: https://github.com/thoughtbot/shoulda-matchers/pull/1106
[#1237]: https://github.com/thoughtbot/shoulda-matchers/pull/1237
[#1241]: https://github.com/thoughtbot/shoulda-matchers/pull/1241
[#1253]: https://github.com/thoughtbot/shoulda-matchers/pull/1253

# 4.1.2

### Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ complex, and error-prone.

## Quick links

📖 **[Read the documentation for the latest version (4.1.2)][rubydocs].**
📖 **[Read the documentation for the latest version][rubydocs].**
📢 **[See what's changed in a recent version][news].**

[rubydocs]: http://matchers.shoulda.io/docs
Expand Down
2 changes: 1 addition & 1 deletion lib/shoulda/matchers/version.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module Shoulda
module Matchers
# @private
VERSION = '4.1.2'.freeze
VERSION = '4.2.0'.freeze
end
end

0 comments on commit 068b0e7

Please sign in to comment.