Skip to content

Commit 212a09e

Browse files
committed
release: prepare v5.0.0
1 parent 6dc1333 commit 212a09e

File tree

6 files changed

+36
-12
lines changed

6 files changed

+36
-12
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

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

5+
## v5.0.0 - 2025-03-18
6+
7+
> ⚠️ **BREAKING CHANGES**: This release contains breaking changes. Please review before upgrading.
8+
9+
### Breaking Changes
10+
11+
- feat!: test since tags 3 ([#11](https://github.com/jasonbahl/automation-tests/pull/11))
12+
513
## v4.4.0 - 2025-03-18
614

715
### New Features

automation-tests.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Plugin Name: Automation Tests
44
* Description: A plugin to test automation workflows.
5-
* Version: 4.4.0
5+
* Version: 5.0.0
66
* Author: Jason Bahl
77
*/
88

@@ -52,9 +52,9 @@ function test_since_next_version_again_2() {
5252
/**
5353
* Testing a new feature with a since tag
5454
*
55-
* @since @next-version
56-
* @deprecated @next-version This function was deprecated when it was added because it was just a test.
55+
* @since 5.0.0
56+
* @deprecated 5.0.0 This function was deprecated when it was added because it was just a test.
5757
*/
5858
function test_since_next_version_again_3() {
59-
_deprecated_function( 'test_since_next_version_again_2', '@next-version', '' )
59+
_deprecated_function( 'test_since_next_version_again_2', '5.0.0', '' )
6060
}

constants.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
define('AUTOMATION_TESTS_VERSION', '4.4.0');
3+
define('AUTOMATION_TESTS_VERSION', '5.0.0');
44
define('AUTOMATION_TESTS_PLUGIN_NAME', 'automation-tests');
55

66

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "automation-tests",
3-
"version": "4.4.0",
3+
"version": "5.0.0",
44
"description": "A plugin to test automation workflows",
55
"main": "index.js",
66
"scripts": {

readme.txt

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: jasonbahl
33
Tags: testing, automation
44
Requires at least: 5.0
55
Tested up to: 6.2
6-
Stable tag: 4.4.0
6+
Stable tag: 5.0.0
77
Requires PHP: 7.4
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -27,6 +27,14 @@ This plugin is a testing ground for GitHub Actions workflows before implementing
2727

2828
== Upgrade Notice ==
2929

30+
= 5.0.0 =
31+
32+
**⚠️ BREAKING CHANGES**: This release contains breaking changes that may require updates to your code.
33+
34+
* feat!: test since tags 3 (https://github.com/jasonbahl/automation-tests/pull/11)
35+
36+
Please review these changes before upgrading.
37+
3038
= 0.2.1 =
3139

3240
**New Features**
@@ -62,6 +70,14 @@ This plugin is a testing ground for GitHub Actions workflows before implementing
6270

6371
== Changelog ==
6472

73+
= 5.0.0 =
74+
75+
**⚠️ BREAKING CHANGES**: This release contains breaking changes. Please review before upgrading.
76+
77+
**Breaking Changes**
78+
79+
* feat!: test since tags 3 (https://github.com/jasonbahl/automation-tests/pull/11)
80+
6581
= 4.4.0 =
6682

6783
**New Features**

release_notes.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33

44
## Changelog
55

6-
**Bump Type:** minor
6+
**Bump Type:** major
77

8-
### ✨ New Features
9-
- feat: test since tag replacement again ([#9](https://github.com/wp-graphql/workflow-tests/pull/9))
8+
### ⚠️ BREAKING CHANGES
9+
- feat!: test since tags 3 ([#11](https://github.com/wp-graphql/workflow-tests/pull/11))
1010

1111
### 👏 Contributors
1212

1313
Thanks to the following contributors for making this release possible:
1414

1515
- [@jasonbahl](https://github.com/jasonbahl)
1616

17-
### Since Tag Updates
17+
### / deprecated version placeholder replacement
1818

19-
Updated 3 @since placeholders in the following files:
19+
Updated 3 or deprecated version placeholders in the following files:
2020

2121
- (3 updates)

0 commit comments

Comments
 (0)