Skip to content

Commit

Permalink
Merge branch 'release/5.0.0' into v5
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed Apr 16, 2024
2 parents 45e41ee + a32c705 commit 4d39629
Show file tree
Hide file tree
Showing 4 changed files with 1,300 additions and 407 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to this project will be documented in this file.

## 5.0.0 - 2024.04.16
### Added
* Stable release for Craft CMS 5
* Add `craft/cloud` to `composer.json` for CI

## 5.0.0-beta.3 - 2024.03.02
### Added
* Add documentation for Craft Cloud usage with Vite ([#83](https://github.com/nystudio107/craft-vite/pull/83))
Expand Down
7 changes: 4 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "nystudio107/craft-vite",
"description": "Allows the use of the Vite.js next generation frontend tooling with Craft CMS",
"type": "craft-plugin",
"version": "5.0.0-beta.3",
"version": "5.0.0",
"keywords": [
"craft",
"cms",
Expand All @@ -24,10 +24,11 @@
],
"require": {
"php": "^8.2",
"craftcms/cms": "^5.0.0-beta.1",
"nystudio107/craft-plugin-vite": "^5.0.0-beta.3"
"craftcms/cms": "^5.0.0",
"nystudio107/craft-plugin-vite": "^5.0.0"
},
"require-dev": {
"craftcms/cloud": "^2.0.0",
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main",
"craftcms/rector": "dev-main"
Expand Down
5 changes: 4 additions & 1 deletion docs/docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ export default defineConfig({
algolia: {
appId: 'AE3HRUJFEW',
apiKey: 'c5dcc2be096fff3a4714c3a877a056fa',
indexName: 'vite'
indexName: 'vite',
searchParameters: {
facetFilters: ["version:v5"],
},
},
lastUpdatedText: 'Last Updated',
sidebar: [],
Expand Down

0 comments on commit 4d39629

Please sign in to comment.