From 4e841913af4383f2c062b2595c9b62c89979dc16 Mon Sep 17 00:00:00 2001 From: Elliot Winkler Date: Wed, 26 Aug 2020 10:55:50 -0600 Subject: [PATCH] Release v4.4.1 --- CHANGELOG.md | 9 +++++++++ lib/shoulda/matchers/version.rb | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b6722dc..90ee60e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 4.4.1 - 2020-08-26 + +### Bug fixes + +* Revert reorganization around autoloading introduced in 4.4.0 which prevented + matchers from being loaded. ([#1334]) + +[#1334]: https://github.com/thoughtbot/shoulda-matchers/pulls/1334 + ## 4.4.0 - 2020-08-25 ### Bug fixes diff --git a/lib/shoulda/matchers/version.rb b/lib/shoulda/matchers/version.rb index ef99247c..1cca3935 100644 --- a/lib/shoulda/matchers/version.rb +++ b/lib/shoulda/matchers/version.rb @@ -1,6 +1,6 @@ module Shoulda module Matchers # @private - VERSION = '4.4.0'.freeze + VERSION = '4.4.1'.freeze end end