Skip to content

Commit b48dbcb

Browse files
committed
chore: sync main back to develop after release v5.1.1 [skip ci]
2 parents 084aa1d + 6528ad5 commit b48dbcb

File tree

9 files changed

+32
-26
lines changed

9 files changed

+32
-26
lines changed

.changesets/20250318T173603-pr-19.md

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

.changesets/20250318T174836-pr-21.md

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

.github/workflows/release-management.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,10 @@ jobs:
149149
150150
# Add @since updates section if there are any
151151
if [[ "${{ steps.update_since_tags.outputs.has_updates }}" == "true" ]]; then
152+
# Store the summary in a variable with proper quoting
153+
SINCE_SUMMARY='${{ steps.update_since_tags.outputs.summary }}'
152154
RELEASE_NOTES="${RELEASE_NOTES}"$'\n\n'
153-
RELEASE_NOTES="${RELEASE_NOTES}${{ steps.update_since_tags.outputs.summary }}"
155+
RELEASE_NOTES="${RELEASE_NOTES}${SINCE_SUMMARY}"
154156
fi
155157
156158
# If no content was added, provide default message
@@ -170,11 +172,11 @@ jobs:
170172
fi
171173
172174
# Save the release notes to a file
173-
echo "$RELEASE_NOTES" > $GITHUB_WORKSPACE/release_notes.md
175+
echo "$RELEASE_NOTES" > "$GITHUB_WORKSPACE/release_notes.md"
174176
175177
# For debugging
176178
echo "Generated release notes:"
177-
cat $GITHUB_WORKSPACE/release_notes.md
179+
cat "$GITHUB_WORKSPACE/release_notes.md"
178180
179181
# Set the content for GitHub Actions output using jq to properly escape the content
180182
echo "content=$(echo "$RELEASE_NOTES" | jq -Rsa .)" >> $GITHUB_OUTPUT

CHANGELOG.md

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

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

5+
## v5.1.1 - 2025-03-18
6+
7+
### Other Changes
8+
9+
- chore: update tested up to header ([#21](https://github.com/jasonbahl/automation-tests/pull/21))
10+
- chore: update description ([#19](https://github.com/jasonbahl/automation-tests/pull/19))
11+
512
## v5.1.0 - 2025-03-18
613

714
### New Features

automation-tests.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22
/**
33
* Plugin Name: Automation Tests
4-
* Description: A plugin to test automation workflows. Updating description in @next-version
5-
* Version: 5.1.0
4+
* Description: A plugin to test automation workflows. Updating description in 5.1.1
5+
* Version: 5.1.1
66
* Author: Jason Bahl
77
* Tested up to: 6.2
88
*/

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

readme.txt

Lines changed: 8 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: 5.1.0
6+
Stable tag: 5.1.1
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,13 @@ This plugin is a testing ground for GitHub Actions workflows before implementing
6262

6363
== Changelog ==
6464

65+
= 5.1.1 =
66+
67+
**Other Changes**
68+
69+
* chore: update tested up to header (https://github.com/jasonbahl/automation-tests/pull/21)
70+
* chore: update description (https://github.com/jasonbahl/automation-tests/pull/19)
71+
6572
= 5.1.0 =
6673

6774
**New Features**

release_notes.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1+
## Release Notes
2+
13

24

35
No changesets found.
46
No changes to release at this time.
7+
8+
### `@since` Tag / Deprecation Updates
9+
10+
Updated 1 version placeholder in the following files:
11+
12+
- `automation-tests.php` (1 update)

0 commit comments

Comments
 (0)