From 08fef08562c7a6a13a7c521938e83409a33e2b77 Mon Sep 17 00:00:00 2001 From: schneems Date: Tue, 8 Oct 2019 12:02:47 -0500 Subject: [PATCH] v4.0.0 --- CHANGELOG.md | 5 +++++ lib/sprockets/version.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ac5d33fcc..fcf414cd1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ Get upgrade notes from Sprockets 3.x to 4.x at https://github.com/rails/sprocket ## Master +## 4.0.0 + +- Fixes for Ruby 2.7 keyword arguments warnings [#625](https://github.com/rails/sprockets/pull/625) +- Manifest files are sorted alphabetically [#626](https://github.com/rails/sprockets/pull/626) + ## 4.0.0.beta10 - Fix YACB (Yet Another Caching Bug) [Fix broken expansion of asset link paths](https://github.com/rails/sprockets/pull/614) diff --git a/lib/sprockets/version.rb b/lib/sprockets/version.rb index 49781eb68..73541b9bd 100644 --- a/lib/sprockets/version.rb +++ b/lib/sprockets/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module Sprockets - VERSION = "4.0.0.beta10" + VERSION = "4.0.0" end