Skip to content

Commit fa90ad8

Browse files
committed
chore: sync main back to develop after release v4.2.0 [skip ci]
2 parents 3371da0 + 4288fc8 commit fa90ad8

File tree

7 files changed

+21
-22
lines changed

7 files changed

+21
-22
lines changed

.changesets/20250317T225453-pr-4.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

CHANGELOG.md

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

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

5+
## v4.2.0 - 2025-03-17
6+
7+
### New Features
8+
9+
- feat: test tag updates ([#4](https://github.com/jasonbahl/automation-tests/pull/4))
10+
511
## v4.1.0 - 2025-03-17
612

713
### 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.1.0
5+
* Version: 4.2.0
66
* Author: Jason Bahl
77
*/
88

@@ -22,10 +22,10 @@
2222
/**
2323
* Testing a new feature with a since tag
2424
*
25-
* @since next-version
26-
* @deprecated @since next-version This function was deprecated when it was added because it was just a test.
25+
* @since 4.2.0
26+
* @deprecated @since 4.2.0 This function was deprecated when it was added because it was just a test.
2727
*/
2828
function test_since_next_version() {
29-
_deprecated_function( 'test_since_next_version', '@since next-version', '' )
29+
_deprecated_function( 'test_since_next_version', '@since 4.2.0', '' )
3030
}
3131

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.1.0');
3+
define('AUTOMATION_TESTS_VERSION', '4.2.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.1.0",
3+
"version": "4.2.0",
44
"description": "A plugin to test automation workflows",
55
"main": "index.js",
66
"scripts": {

readme.txt

Lines changed: 7 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.1.0
6+
Stable tag: 4.2.0
77
Requires PHP: 7.4
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -62,6 +62,12 @@ This plugin is a testing ground for GitHub Actions workflows before implementing
6262

6363
== Changelog ==
6464

65+
= 4.2.0 =
66+
67+
**New Features**
68+
69+
* feat: test tag updates (https://github.com/jasonbahl/automation-tests/pull/4)
70+
6571
= 4.1.0 =
6672

6773
**New Features**

release_notes.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,12 @@
66
**Bump Type:** minor
77

88
### ✨ New Features
9-
- feat: new feature 1 ([#2](https://github.com/wp-graphql/workflow-tests/pull/2))
9+
- feat: test tag updates ([#4](https://github.com/wp-graphql/workflow-tests/pull/4))
1010

1111
### 👏 Contributors
1212

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

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

17-
### 🎉 First-time Contributors
18-
19-
Special thanks to the following first-time contributors:
20-
21-
- [@jasonbahl](https://github.com/jasonbahl)
17+
### @since Tag Updates%0A%0AUpdated 3 @since placeholders in the following files:%0A%0A- (3 updates)

0 commit comments

Comments
 (0)