Skip to content

Commit

Permalink
Adds Craft 4.0 compatibility. Bump to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mmikkel committed Mar 22, 2022
1 parent b2bc57d commit 95b700b
Show file tree
Hide file tree
Showing 8 changed files with 6,882 additions and 31 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).

## 1.2.0 - 2022-03-23

### Added
- Added Craft 4.0 compatibility

### Changed
- CP Clear Cache now requires Craft 3.7.x
- Updated plugin icon

## 1.1.0 - 2021-01-21

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Less clickin’ to get clearin’

## Requirements

This plugin requires Craft CMS 3.0.0-RC1 or later.
This plugin requires Craft CMS 3.7.0 or later.

## Installation

Expand Down
17 changes: 15 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "mmikkel/cp-clearcache",
"description": "Less clickin’ to get clearin’",
"type": "craft-plugin",
"version": "1.1.0",
"version": "1.2.0",
"keywords": [
"craft",
"cms",
Expand All @@ -22,7 +22,19 @@
}
],
"require": {
"craftcms/cms": "^3.5.0"
"craftcms/cms": "^3.7.0|^4.0.0-beta.3",
"php": "^7.2.5|^8.0.2"
},
"require-dev": {
"craftcms/rector": "dev-main"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"autoload": {
"psr-4": {
Expand All @@ -32,6 +44,7 @@
"extra": {
"name": "CP Clear Cache",
"handle": "cp-clearcache",
"schemaVersion": "1.0.0",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/mmikkel/CpClearCache-Craft/master/CHANGELOG.md",
Expand Down
Loading

0 comments on commit 95b700b

Please sign in to comment.