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