Skip to content

Commit af7651e

Browse files
committed
Bump gem version to 0.8.0
1 parent 4e4275c commit af7651e

File tree

8 files changed

+19
-7
lines changed

8 files changed

+19
-7
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## 0.8.0
4+
5+
Support Rails 7.
6+
7+
Note: Sprockets is no longer an explicit dependency in Rails 7, so if your
8+
application still uses Sprockets (or Propshaft) then that railtie will now be
9+
loaded by `Bundler.require(*Rails.groups)` in `config/application.rb` (rather
10+
than by `require "rails/all"`). As a result, it's important to place the
11+
`require "external_asset_pipeline/railtie"` line **after**
12+
`Bundler.require(*Rails.groups)` to ensure that ExternalAssetPipeline takes
13+
precedence over Sprockets (or Propshaft).
14+
315
## 0.7.0
416

517
Consider manifest to be empty if the corresponding manifest file does not exist.

examples/demo_app-brunch/Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ../..
33
specs:
4-
external_asset_pipeline (0.7.0)
4+
external_asset_pipeline (0.8.0)
55
railties (>= 5.0.0, < 8.0)
66

77
GEM

examples/demo_app-gulp-alt/Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ../..
33
specs:
4-
external_asset_pipeline (0.7.0)
4+
external_asset_pipeline (0.8.0)
55
railties (>= 5.0.0, < 8.0)
66

77
GEM

examples/demo_app-gulp/Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ../..
33
specs:
4-
external_asset_pipeline (0.7.0)
4+
external_asset_pipeline (0.8.0)
55
railties (>= 5.0.0, < 8.0)
66

77
GEM

examples/demo_app-rails5/Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ../..
33
specs:
4-
external_asset_pipeline (0.7.0)
4+
external_asset_pipeline (0.8.0)
55
railties (>= 5.0.0, < 8.0)
66

77
GEM

examples/demo_app-rollup/Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ../..
33
specs:
4-
external_asset_pipeline (0.7.0)
4+
external_asset_pipeline (0.8.0)
55
railties (>= 5.0.0, < 8.0)
66

77
GEM

examples/demo_app/Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ../..
33
specs:
4-
external_asset_pipeline (0.7.0)
4+
external_asset_pipeline (0.8.0)
55
railties (>= 5.0.0, < 8.0)
66

77
GEM

lib/external_asset_pipeline/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module ExternalAssetPipeline
44
module VERSION
55
MAJOR = 0
6-
MINOR = 7
6+
MINOR = 8
77
PATCH = 0
88

99
STRING = [MAJOR, MINOR, PATCH].join('.')

0 commit comments

Comments
 (0)