Skip to content

Commit

Permalink
chore: Version 4.0.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed Mar 14, 2022
1 parent ab9f1cc commit 82aa57e
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 51 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Route Map Changelog

## 4.0.0-beta.1 - 2022.03.14

### Added

* Initial Craft CMS 4 compatibility

## 1.1.7 - 2021.07.17
### Changed
* Switched documentation system to VitePress
Expand Down
90 changes: 39 additions & 51 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,54 +1,42 @@
{
"name": "nystudio107/craft-routemap",
"description": "Returns a list of Craft/Vue/React route rules and element URLs for ServiceWorkers from Craft entries",
"type": "craft-plugin",
"version": "1.1.7",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"vue",
"react",
"routes",
"serviceworker",
"route map"
],
"support": {
"docs": "https://nystudio107.com/plugins/routemap/documentation",
"issues": "https://nystudio107.com/plugins/routemap/support"
},
"license": "MIT",
"authors": [
{
"name": "nystudio107",
"homepage": "https://nystudio107.com/"
}
],
"require": {
"craftcms/cms": "^3.0.0"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"nystudio107\\routemap\\": "src/"
}
},
"extra": {
"name": "Route Map",
"handle": "route-map",
"schemaVersion": "1.0.0",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/nystudio107/craft-routemap/v1/CHANGELOG.md",
"components": {
"routes": "nystudio107\\routemap\\services\\Routes"
},
"class": "nystudio107\\routemap\\RouteMap"
"name": "nystudio107/craft-routemap",
"description": "Returns a list of Craft/Vue/React route rules and element URLs for ServiceWorkers from Craft entries",
"type": "craft-plugin",
"version": "4.0.0-beta.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"vue",
"react",
"routes",
"serviceworker",
"route map"
],
"support": {
"docs": "https://nystudio107.com/docs/route-map/",
"issues": "https://nystudio107.com/plugins/routemap/support",
"source": "https://github.com/nystudio107/craft-routemap"
},
"license": "MIT",
"authors": [
{
"name": "nystudio107",
"homepage": "https://nystudio107.com/"
}
],
"require": {
"craftcms/cms": "^4.0.0-beta.1"
},
"autoload": {
"psr-4": {
"nystudio107\\routemap\\": "src/"
}
},
"extra": {
"class": "nystudio107\\routemap\\RouteMap",
"handle": "route-map",
"name": "Route Map"
}
}

0 comments on commit 82aa57e

Please sign in to comment.