From e64f2c5198712837055a7373a88b6f5439689e5f Mon Sep 17 00:00:00 2001 From: Vladimir Dementyev Date: Tue, 2 Apr 2019 12:34:31 -0400 Subject: [PATCH] Bump 0.3.0 --- CHANGELOG.md | 2 +- docs/debugging.md | 1 - lib/action_policy/version.rb | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fa2f706..2be6095 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ ## master -## 0.3.0.beta1 (2019-03-30) +## 0.3.0 (2019-04-02) - Added ActiveSupport-based instrumentation. ([@palkan][]) diff --git a/docs/debugging.md b/docs/debugging.md index 0f0734e..b691ffb 100644 --- a/docs/debugging.md +++ b/docs/debugging.md @@ -17,7 +17,6 @@ def feed? (admin? || allowed_to?(:access_feed?)) && (user.name == "Jack" || user.name == "Kate") end - ``` Suppose that you want to debug this rule ("Why does it return false?"). diff --git a/lib/action_policy/version.rb b/lib/action_policy/version.rb index 3acfa61..2d784f9 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.3.0.beta1" + VERSION = "0.3.0" end