diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f6ed6da..b16cddbc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,15 @@ ## Unreleased +## 2.4.0 (2024-08-26) + +## Changed + - Improve the `NotAuthorizedError` message to include the policy class. -Furthermore, in the case where the record passed is a class instead of an instance, the class name is given. (#812) + Furthermore, in the case where the record passed is a class instead of an instance, the class name is given. (#812) + +## Added + - Add customizable permit matcher description (#806) - Add support for filter_run_when_matching :focus with permissions helper. (#820) diff --git a/lib/pundit/version.rb b/lib/pundit/version.rb index 6cdaa20e..049df533 100644 --- a/lib/pundit/version.rb +++ b/lib/pundit/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Pundit - VERSION = "2.3.2" + VERSION = "2.4.0" end