Bump to version v5.0.0.beta1

This commit is contained in:
Aaron Suggs 2016-07-04 21:12:35 -04:00
parent f5f08d56e5
commit e8433f7693
2 changed files with 10 additions and 1 deletions

View file

@ -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

View file

@ -1,5 +1,5 @@
module Rack
class Attack
VERSION = '4.4.1'
VERSION = '5.0.0.beta1'
end
end