From eafbd11ea5407559393c5ea22fc2322eeb3e5ad2 Mon Sep 17 00:00:00 2001 From: Jean Boussier Date: Tue, 20 Dec 2022 15:29:29 +0100 Subject: [PATCH] Prepare for 4.2.0 --- CHANGELOG.md | 3 +++ lib/sprockets/version.rb | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec71d1c45..564e898fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ Get upgrade notes from Sprockets 3.x to 4.x at https://github.com/rails/sprockets/blob/master/UPGRADING.md +## 4.2.0 + +- Rack 3 compatibility. [#758](https://github.com/rails/sprockets/pull/758) - Fix thread safety of `Sprockets::CachedEnvironment` and `Sprockets::Cache::MemoryStore`. [#771](https://github.com/rails/sprockets/pull/771) - Add support for Rack 3.0. Headers set by sprockets will now be lower case. [#758](https://github.com/rails/sprockets/pull/758) - Make `Sprockets::Utils.module_include` thread safe on JRuby. [#759](https://github.com/rails/sprockets/pull/759) diff --git a/lib/sprockets/version.rb b/lib/sprockets/version.rb index 041ed31e5..85c50d604 100644 --- a/lib/sprockets/version.rb +++ b/lib/sprockets/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module Sprockets - VERSION = "4.1.1" + VERSION = "4.2.0" end