From a4099aa17f3b82fa1104b357443f4c94dd48758a Mon Sep 17 00:00:00 2001 From: Vladimir Dementyev Date: Thu, 20 Jun 2024 16:13:25 -0700 Subject: [PATCH] Bump 0.7.0 --- CHANGELOG.md | 4 ++++ lib/action_policy/version.rb | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 495b6d0..54c9609 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,12 @@ ## master +## 0.7.0 (2024-06-20) + - **Ruby 2.7+** is required. +- Support using callable objects as scopes. ([@killondark][]) + ## 0.6.9 (2024-04-19) - Add `.with_context` modifier to the `#have_authorized_scope` matcher. ([@killondark][]) diff --git a/lib/action_policy/version.rb b/lib/action_policy/version.rb index 9a590db..d91197e 100644 --- a/lib/action_policy/version.rb +++ b/lib/action_policy/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module ActionPolicy - VERSION = "0.6.9" + VERSION = "0.7.0" end