Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
Merge branch 'release/4.0.1' into v4
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed Jul 18, 2022
2 parents d35dc99 + 02e7ad2 commit 9c64f92
Show file tree
Hide file tree
Showing 6 changed files with 253 additions and 291 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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

## 4.0.1 - 2022.08.18
### Changed
* Add `allow-plugins` to `composer.json` to allow CI tests to work

### Fixed
* Fixed an issue with the short syntax type declarations ([#31]https://github.com/nystudio107/craft-eagerbeaver/pull/31)

## 4.0.0 - 2022.06.01
### Added
* Initial Craft CMS 4 release
Expand Down
10 changes: 9 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "nystudio107/craft-eagerbeaver",
"description": "Allows you to eager load elements from auto-injected Entry elements on demand from your templates.",
"type": "craft-plugin",
"version": "4.0.0",
"version": "4.0.1",
"keywords": [
"craft",
"cms",
Expand All @@ -28,6 +28,14 @@
"require": {
"craftcms/cms": "^4.0.0"
},
"config": {
"allow-plugins": {
"craftcms/plugin-installer": true,
"yiisoft/yii2-composer": true
},
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"nystudio107\\eagerbeaver\\": "src/"
Expand Down
4 changes: 2 additions & 2 deletions docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ docker:
-t ${CONTAINER}:${TAG} \
--build-arg TAG=${TAG} \
--no-cache
build: clean docker install
build: docker install
${DOCKERRUN} \
run docs:build
rm -rf ${DOCSDEST}
Expand All @@ -34,7 +34,7 @@ install: docker
lint: docker install
${DOCKERRUN} \
run docs:lint
clean: docker
clean:
rm -rf node_modules/
rm -f package-lock.json
npm: docker
Expand Down
Loading

0 comments on commit 9c64f92

Please sign in to comment.