From e8433f769309ad11a2aae9d39316cf301e289e57 Mon Sep 17 00:00:00 2001 From: Aaron Suggs Date: Mon, 4 Jul 2016 21:12:35 -0400 Subject: [PATCH] Bump to version v5.0.0.beta1 --- CHANGELOG.md | 9 +++++++++ lib/rack/attack/version.rb | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b505689..082f6cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ ## master (unreleased) +## v5.0.0 (beta) + + - Deprecate `whitelist`/`blacklist` in favor of `safelist`/`blocklist`. (#181, + thanks @renee-travisci). + +To upgrade and fix deprecations, find and replace instances of `whitelist` and +`blacklist` with `safelist` and `blocklist`. If you reference `rack.attack.match_type`, +note that it will have values like `:safelist`/`:blocklist`. + ## v4.4.1 17 Feb 2016 - Fix a bug affecting apps using Redis::Store and ActiveSupport that could generate an error diff --git a/lib/rack/attack/version.rb b/lib/rack/attack/version.rb index 2c31f64..4f917c7 100644 --- a/lib/rack/attack/version.rb +++ b/lib/rack/attack/version.rb @@ -1,5 +1,5 @@ module Rack class Attack - VERSION = '4.4.1' + VERSION = '5.0.0.beta1' end end