From 5b040f3bec503ded8a98c0c911c7a77dd1f5bf1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Mendon=C3=A7a=20Fran=C3=A7a?= Date: Tue, 5 Sep 2023 21:52:04 +0000 Subject: [PATCH] Prepare for 4.2.1 --- CHANGELOG.md | 4 +++- lib/sprockets/version.rb | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3881b9269..5a66b4c15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ Get upgrade notes from Sprockets 3.x to 4.x at https://github.com/rails/sprockets/blob/master/UPGRADING.md +## 4.2.1 + - Fix for precompile issues when multiple extensions map to the same MIME type (eg. `.jpeg` / `.jpg`). [#781](https://github.com/rails/sprockets/pull/781) - Fix `application/css-sourcemap+json` charset [#764](https://github.com/rails/sprockets/pull/764) - Fix compatibility with Rack 2 applications. [#790](https://github.com/rails/sprockets/pull/790) @@ -12,7 +14,7 @@ Get upgrade notes from Sprockets 3.x to 4.x at https://github.com/rails/sprocket - 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) -- Fix typo in `asset.rb` file. [#768](https://github.com/rails/sprockets/pull/768) +- Fix typo in `asset.rb` file. [#768](https://github.com/rails/sprockets/pull/768) ## 4.1.1 diff --git a/lib/sprockets/version.rb b/lib/sprockets/version.rb index 85c50d604..44d201653 100644 --- a/lib/sprockets/version.rb +++ b/lib/sprockets/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module Sprockets - VERSION = "4.2.0" + VERSION = "4.2.1" end