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