Prep for v4.1.0

This commit is contained in:
Aaron Suggs 2014-05-22 13:58:47 -04:00
parent 105c3ba575
commit 1a3cddb468
2 changed files with 5 additions and 2 deletions

View file

@ -1,7 +1,10 @@
# Changlog # Changlog
## master (unreleased) ## master (unreleased)
- Default throttled/blacklist responses have Content-Type: text/plain ## v4.1.0 - 22 May 2014
- Tracks take an optional limit and period to only notify once a threshold
is reached (similar to throttles). Thanks @chiliburger!
- Default throttled & blacklist responses have Content-Type: text/plain
- Rack::Attack.clear! resets tracks - Rack::Attack.clear! resets tracks
## v4.0.1 - 14 May 2014 ## v4.0.1 - 14 May 2014

View file

@ -1,5 +1,5 @@
module Rack module Rack
class Attack class Attack
VERSION = '4.0.1' VERSION = '4.1.0'
end end
end end