Skip to content

Commit

Permalink
Merge pull request #64 from Automattic/release/0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GaryJones authored Nov 26, 2024
2 parents c0b658d + eead5aa commit 158271e
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 6 deletions.
37 changes: 36 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,40 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.0] - 2024-11-25

Predominantly a maintenance release, though it does include a couple of added changes, and a couple of breaking changes

### Breaking Changes
- `current_user_can_bypass_vip_maintenance_mode()` has been renamed to `vip_maintenance_mode_current_user_can_bypass()`. This was only called inside other functions, but if you had custom code that called it, this will need updating.
- The minimum support version of PHP has been increased from 5.6 to 7.4.
- The minimum support version of WordPress has been increased from 4.6 to 5.9.

### Added
- Add UptimeRobot to ignore list by @BrookeDot in https://github.com/Automattic/maintenance-mode-wp/pull/50
- Template: improve template loading by @GaryJones in https://github.com/Automattic/maintenance-mode-wp/pull/60

### Maintenance
- Remove PHP 5.6 from Travis test matrix by @rinatkhaziev in https://github.com/Automattic/maintenance-mode-wp/pull/39
- Setup github actions by @trepmal in https://github.com/Automattic/maintenance-mode-wp/pull/41
- PHPCS fixes by @trepmal in https://github.com/Automattic/maintenance-mode-wp/pull/42
- Add readme with screenshots by @trepmal in https://github.com/Automattic/maintenance-mode-wp/pull/43
- Update github actions by @trepmal in https://github.com/Automattic/maintenance-mode-wp/pull/44
- Migrating plugin instructions from old VIP Docs site to plugin's README.md by @yolih in https://github.com/Automattic/maintenance-mode-wp/pull/49
- Composer: Add allow-plugins config by @GaryJones in https://github.com/Automattic/maintenance-mode-wp/pull/53
- CI: Refresh CI configs and Composer dependencies by @GaryJones in https://github.com/Automattic/maintenance-mode-wp/pull/54
- CS: Fix coding standards violations issues by @GaryJones in https://github.com/Automattic/maintenance-mode-wp/pull/55
- Docs: Add new default theme screenshots by @GaryJones in https://github.com/Automattic/maintenance-mode-wp/pull/56
- Docs: Add changelog file by @GaryJones in https://github.com/Automattic/maintenance-mode-wp/pull/57
- Add Rector by @GaryJones in https://github.com/Automattic/maintenance-mode-wp/pull/58
- CS: Address low severity violations by @GaryJones in https://github.com/Automattic/maintenance-mode-wp/pull/59
- Docs: Consolidate two readme files by @GaryJones in https://github.com/Automattic/maintenance-mode-wp/pull/61
- Add version bump script by @GaryJones in https://github.com/Automattic/maintenance-mode-wp/pull/62
- Dev: Add/update development files by @GaryJones in https://github.com/Automattic/maintenance-mode-wp/pull/63

### Removed
- Remove wpcom helper by @trepmal in https://github.com/Automattic/maintenance-mode-wp/pull/46

## [0.2.2] - 2019-08-08

### Added
Expand Down Expand Up @@ -54,6 +88,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial release.


[0.3.0]: https://github.com/automattic/maintenance-mode-wp/compare/0.2.2...0.3.0
[0.2.2]: https://github.com/automattic/maintenance-mode-wp/compare/0.2.1...0.2.2
[0.2.1]: https://github.com/automattic/maintenance-mode-wp/compare/0.2.0...0.2.1
[0.2.0]: https://github.com/automattic/maintenance-mode-wp/compare/0.1.0...0.2.0
[0.2.0]: https://github.com/automattic/maintenance-mode-wp/compare/0.1.0...0.2.0
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Maintenance Mode

Stable tag: 0.2.2
Stable tag: 0.3.0
Requires at least: 5.9
Tested up to: 6.7
License: GPLv2 or later
Expand Down
2 changes: 1 addition & 1 deletion maintenance-mode.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Plugin Name: Maintenance Mode
* Plugin URI: https://github.com/Automattic/maintenance-mode-wp
* Description: Shut down your site for a little while and do some maintenance on it!
* Version: 0.2.2
* Version: 0.3.0
* Requires at least: 5.9
* Requires PHP: 7.4
* Author: WordPress VIP, Automattic
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "maintenance-mode-wp",
"version": "0.2.2",
"version": "0.3.0",
"description": "Shut down your site for a little while and do some maintenance on it!",
"license": "GPL-2.0-or-later",
"private": true,
Expand All @@ -10,7 +10,7 @@
"bump:minor": "bump minor --commit 'Version %s.' package.json package-lock.json maintenance-mode.php README.md",
"bump:major": "bump major --commit 'Version %s.' package.json package-lock.json maintenance-mode.php README.md"
},
"devDependencies": {
"devDependencies": {
"version-bump-prompt": "^6.1.0"
}
}

0 comments on commit 158271e

Please sign in to comment.