Skip to content

Commit 041bdbc

Browse files
jasonbahlgithub-actions[bot]
authored andcommitted
release: prepare v5.1.0
1 parent 9c2dfcc commit 041bdbc

11 files changed

+46
-38
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

CHANGELOG.md

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

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

5+
## v5.1.0 - 2025-03-18
6+
7+
### New Features
8+
9+
- feat: test updates to another file ([#15](https://github.com/jasonbahl/automation-tests/pull/15))
10+
11+
### Bug Fixes
12+
13+
- fix: cleanup ([#18](https://github.com/jasonbahl/automation-tests/pull/18))
14+
- fix: add missing comment ([#17](https://github.com/jasonbahl/automation-tests/pull/17))
15+
- fix: add missing docblock ([#16](https://github.com/jasonbahl/automation-tests/pull/16))
16+
- fix: test since version replacement ([#13](https://github.com/jasonbahl/automation-tests/pull/13))
17+
518
## v5.0.0 - 2025-03-18
619

720
> ⚠️ **BREAKING CHANGES**: This release contains breaking changes. Please review before upgrading.

automation-tests.php

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

99
/**
10-
* Added a missing docblock in @next-version
10+
* Added a missing docblock in 5.1.0
1111
*/
1212
if ( ! defined( 'ABSPATH' ) ) {
1313
exit;
1414
}
1515

16-
// add missing comment in @next-version
16+
// add missing comment in 5.1.0
1717
require_once __DIR__ . '/constants.php';
1818

1919
// show a message in the admin dashboard with the plugin name and version
@@ -64,9 +64,9 @@ function test_since_next_version_again_3() {
6464
/**
6565
* Testing a new feature with a since tag
6666
*
67-
* @since todo
68-
* @deprecated @next-version This function was deprecated when it was added because it was just a test.
67+
* @since 5.1.0
68+
* @deprecated 5.1.0 This function was deprecated when it was added because it was just a test.
6969
*/
7070
function test_since_next_version_again_4() {
71-
_deprecated_function( 'test_since_next_version_again_4', '@next-version', '' )
71+
_deprecated_function( 'test_since_next_version_again_4', '5.1.0', '' )
7272
}

constants.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?php
22

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

66
/**
77
* Another test that should replace the since and deprecation version placeholders upon release.
88
9-
* @since next-version
9+
* @since 5.1.0
1010
*/
1111
function another_since_replacement_test() {
12-
_deprecated_function( 'another_since_replacement_test', '@next-version', '' );
12+
_deprecated_function( 'another_since_replacement_test', '5.1.0', '' );
1313
}

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": "5.0.0",
3+
"version": "5.1.0",
44
"description": "A plugin to test automation workflows",
55
"main": "index.js",
66
"scripts": {

readme.txt

Lines changed: 17 additions & 12 deletions
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: 5.0.0
6+
Stable tag: 5.1.0
77
Requires PHP: 7.4
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -27,14 +27,6 @@ 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-
3830
= 0.2.1 =
3931

4032
**New Features**
@@ -70,14 +62,27 @@ Please review these changes before upgrading.
7062

7163
== Changelog ==
7264

73-
= 5.0.0 =
65+
= 5.1.0 =
7466

75-
**⚠️ BREAKING CHANGES**: This release contains breaking changes. Please review before upgrading.
67+
**New Features**
7668

77-
**Breaking Changes**
69+
* feat: test updates to another file (https://github.com/jasonbahl/automation-tests/pull/15)
70+
71+
**Bug Fixes**
72+
73+
* fix: cleanup (https://github.com/jasonbahl/automation-tests/pull/18)
74+
* fix: add missing comment (https://github.com/jasonbahl/automation-tests/pull/17)
75+
* fix: add missing docblock (https://github.com/jasonbahl/automation-tests/pull/16)
76+
* fix: test since version replacement (https://github.com/jasonbahl/automation-tests/pull/13)
77+
78+
= 5.0.0 =
79+
80+
**⚠️ BREAKING CHANGES**: This release contains breaking changes that may require updates to your code.
7881

7982
* feat!: test since tags 3 (https://github.com/jasonbahl/automation-tests/pull/11)
8083

84+
Please review these changes before upgrading.
85+
8186
= 4.4.0 =
8287

8388
**New Features**

0 commit comments

Comments
 (0)