From 9b3f4ceff41e761626863162c9090611fa7b5c67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Cournoyer?= Date: Wed, 19 May 2021 20:54:51 -0400 Subject: [PATCH] Bump version to 1.8.1 --- CHANGELOG | 6 ++++++ lib/thin/version.rb | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) 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