From 85b956cf1cf377e3e53911cd4e717f7392f7f818 Mon Sep 17 00:00:00 2001 From: Samuel Williams Date: Fri, 31 Mar 2023 23:58:22 +1300 Subject: [PATCH] Bump patch version. --- CHANGELOG | 3 +++ lib/thin/version.rb | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 95c80111..d14a69cb 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +== 1.8.2 Ruby Razor + * Ruby 3.2 support. + == 1.8.1 Infinite Smoothie * Fix possible HTTP Response Splitting diff --git a/lib/thin/version.rb b/lib/thin/version.rb index 44de8545..7e1da968 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 = 1 + TINY = 2 STRING = [MAJOR, MINOR, TINY].join('.') - CODENAME = "Infinite Smoothie".freeze + CODENAME = "Ruby Razor".freeze RACK = [1, 0].freeze # Rack protocol version end