Skip to content

Commit

Permalink
Prepare 1.0.11 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ElMassimo committed Jan 24, 2021
1 parent de26424 commit 72ae843
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## Vite Rails 1.0.11 (2020-01-24)

- Fix bug in `assetHost` that caused `base` to be configured incorrectly.
- Allow installing `vite` and `vite-plugin-ruby` as devDependencies, and install them when precompiling assets.
- Move `base` to the configuration root after Vite's update in beta.38

## Vite Rails 1.0.10 (2020-01-23)

- Use `path_to_asset` in `vite_asset_path` so that it's prefixed automatically
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
vite_rails (1.0.10)
vite_rails (1.0.11)
activesupport (>= 5.1)
rack-proxy (>= 0.6.1)
railties (>= 5.1)
Expand Down
2 changes: 1 addition & 1 deletion examples/blog/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ../..
specs:
vite_rails (1.0.10)
vite_rails (1.0.11)
activesupport (>= 5.1)
rack-proxy (>= 0.6.1)
railties (>= 5.1)
Expand Down
2 changes: 1 addition & 1 deletion examples/blog/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"version": "0.1.0",
"devDependencies": {
"vite-plugin-ruby": "file:../../package",
"vite-plugin-ruby": "1.0.5",
"postcss": "8.2.4",
"vite": "^2.0.0-beta.46",
"tailwindcss": "^2.0.2",
Expand Down
4 changes: 3 additions & 1 deletion examples/blog/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7647,8 +7647,10 @@ verror@1.10.0:
core-util-is "1.0.2"
extsprintf "^1.2.0"

"vite-plugin-ruby@file:../../package":
vite-plugin-ruby@1.0.5:
version "1.0.5"
resolved "https://registry.yarnpkg.com/vite-plugin-ruby/-/vite-plugin-ruby-1.0.5.tgz#7e10bacec9afc109172bac53075700f72ab00dfd"
integrity sha512-SINoMp2OZQmAOQoWz3ckGop6iQUUg9ERF7PHe5NK+ENd0TOB55+Ch5Kbc3fi7qtY8qHKMev3lJYgdS2Qay+X4A==
dependencies:
fast-glob "^3.2.4"

Expand Down
2 changes: 1 addition & 1 deletion lib/vite_rails/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

class ViteRails
VERSION = '1.0.10'
VERSION = '1.0.11'
end
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
},
"dependencies": {
"vite": "^2.0.0-beta.46",
"vite-plugin-ruby": "^1.0.4"
"vite-plugin-ruby": "^1.0.5"
}
}
2 changes: 1 addition & 1 deletion test/mounted_app/test/dummy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"license": "MIT",
"devDependencies": {
"vite": "^2.0.0-beta.46",
"vite-plugin-ruby": "^1.0.4"
"vite-plugin-ruby": "^1.0.5"
}
}

0 comments on commit 72ae843

Please sign in to comment.