diff --git a/CHANGELOG.md b/CHANGELOG.md index 0aa9445..d9863ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,11 @@ # Changlog ## master (unreleased) + +## v4.0.0 - 28 April 2014 * Implement proxy for Dalli with better Memcachier support. (thanks @hakanensari) - * Rack::Attack.new returns an instance to ease testing (thanks @stevehodgkiss) + * Rack::Attack.new returns an instance to ease testing. (thanks @stevehodgkiss) + [Changing a module to a class is not backwards compatible, hence v4.0.0.] * Use Rack::Attack::Request subclass of Rack::Request for easier extending (thanks @tristandunn) * Test more dalli versions. diff --git a/lib/rack/attack/version.rb b/lib/rack/attack/version.rb index 1246847..5f8980e 100644 --- a/lib/rack/attack/version.rb +++ b/lib/rack/attack/version.rb @@ -1,5 +1,5 @@ module Rack class Attack - VERSION = '3.1.0' + VERSION = '4.0.0' end end