diff --git a/CHANGELOG b/CHANGELOG index 073f19cf..95c80111 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,9 @@ +== 1.8.1 Infinite Smoothie + * Fix possible HTTP Response Splitting + +== 1.8.0 Possessed Pickle + * Many things + == 1.7.2 Bachmanity * Add config support for ssl_version and ssl_cipher_list [frameworked] diff --git a/lib/thin/version.rb b/lib/thin/version.rb index d86e84dc..44de8545 100644 --- a/lib/thin/version.rb +++ b/lib/thin/version.rb @@ -6,11 +6,11 @@ class PlatformNotSupported < RuntimeError; end module VERSION #:nodoc: MAJOR = 1 MINOR = 8 - TINY = 0 + TINY = 1 STRING = [MAJOR, MINOR, TINY].join('.') - CODENAME = "Possessed Pickle".freeze + CODENAME = "Infinite Smoothie".freeze RACK = [1, 0].freeze # Rack protocol version end