From af7651e4029b43844feba46ef3168f6efead173e Mon Sep 17 00:00:00 2001 From: Richard Macklin Date: Sat, 23 Apr 2022 00:03:51 -0700 Subject: [PATCH] Bump gem version to 0.8.0 --- CHANGELOG.md | 12 ++++++++++++ examples/demo_app-brunch/Gemfile.lock | 2 +- examples/demo_app-gulp-alt/Gemfile.lock | 2 +- examples/demo_app-gulp/Gemfile.lock | 2 +- examples/demo_app-rails5/Gemfile.lock | 2 +- examples/demo_app-rollup/Gemfile.lock | 2 +- examples/demo_app/Gemfile.lock | 2 +- lib/external_asset_pipeline/version.rb | 2 +- 8 files changed, 19 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index affc30a..edff9b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## 0.8.0 + +Support Rails 7. + +Note: Sprockets is no longer an explicit dependency in Rails 7, so if your +application still uses Sprockets (or Propshaft) then that railtie will now be +loaded by `Bundler.require(*Rails.groups)` in `config/application.rb` (rather +than by `require "rails/all"`). As a result, it's important to place the +`require "external_asset_pipeline/railtie"` line **after** +`Bundler.require(*Rails.groups)` to ensure that ExternalAssetPipeline takes +precedence over Sprockets (or Propshaft). + ## 0.7.0 Consider manifest to be empty if the corresponding manifest file does not exist. diff --git a/examples/demo_app-brunch/Gemfile.lock b/examples/demo_app-brunch/Gemfile.lock index c946ce4..cd509ad 100644 --- a/examples/demo_app-brunch/Gemfile.lock +++ b/examples/demo_app-brunch/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../.. specs: - external_asset_pipeline (0.7.0) + external_asset_pipeline (0.8.0) railties (>= 5.0.0, < 8.0) GEM diff --git a/examples/demo_app-gulp-alt/Gemfile.lock b/examples/demo_app-gulp-alt/Gemfile.lock index c946ce4..cd509ad 100644 --- a/examples/demo_app-gulp-alt/Gemfile.lock +++ b/examples/demo_app-gulp-alt/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../.. specs: - external_asset_pipeline (0.7.0) + external_asset_pipeline (0.8.0) railties (>= 5.0.0, < 8.0) GEM diff --git a/examples/demo_app-gulp/Gemfile.lock b/examples/demo_app-gulp/Gemfile.lock index c946ce4..cd509ad 100644 --- a/examples/demo_app-gulp/Gemfile.lock +++ b/examples/demo_app-gulp/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../.. specs: - external_asset_pipeline (0.7.0) + external_asset_pipeline (0.8.0) railties (>= 5.0.0, < 8.0) GEM diff --git a/examples/demo_app-rails5/Gemfile.lock b/examples/demo_app-rails5/Gemfile.lock index b2a0219..6e16602 100644 --- a/examples/demo_app-rails5/Gemfile.lock +++ b/examples/demo_app-rails5/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../.. specs: - external_asset_pipeline (0.7.0) + external_asset_pipeline (0.8.0) railties (>= 5.0.0, < 8.0) GEM diff --git a/examples/demo_app-rollup/Gemfile.lock b/examples/demo_app-rollup/Gemfile.lock index 529b1b0..e1b55d9 100644 --- a/examples/demo_app-rollup/Gemfile.lock +++ b/examples/demo_app-rollup/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../.. specs: - external_asset_pipeline (0.7.0) + external_asset_pipeline (0.8.0) railties (>= 5.0.0, < 8.0) GEM diff --git a/examples/demo_app/Gemfile.lock b/examples/demo_app/Gemfile.lock index 529b1b0..e1b55d9 100644 --- a/examples/demo_app/Gemfile.lock +++ b/examples/demo_app/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../.. specs: - external_asset_pipeline (0.7.0) + external_asset_pipeline (0.8.0) railties (>= 5.0.0, < 8.0) GEM diff --git a/lib/external_asset_pipeline/version.rb b/lib/external_asset_pipeline/version.rb index 3dcf89b..f28c543 100644 --- a/lib/external_asset_pipeline/version.rb +++ b/lib/external_asset_pipeline/version.rb @@ -3,7 +3,7 @@ module ExternalAssetPipeline module VERSION MAJOR = 0 - MINOR = 7 + MINOR = 8 PATCH = 0 STRING = [MAJOR, MINOR, PATCH].join('.')