Skip to content

Commit

Permalink
Bump gem version to 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rmacklin committed Apr 23, 2022
1 parent 4e4275c commit af7651e
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 7 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion examples/demo_app-brunch/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/demo_app-gulp-alt/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/demo_app-gulp/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/demo_app-rails5/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/demo_app-rollup/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/demo_app/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/external_asset_pipeline/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module ExternalAssetPipeline
module VERSION
MAJOR = 0
MINOR = 7
MINOR = 8
PATCH = 0

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

0 comments on commit af7651e

Please sign in to comment.