From c5ff9a22ff0b09a6b0834fdc498d790ab6a844d3 Mon Sep 17 00:00:00 2001 From: Jason Bahl Date: Tue, 11 Mar 2025 12:11:47 -0600 Subject: [PATCH] test: add test changesets --- .changesets/archive/20250311T180310-pr-1.md | 9 +++++ .changesets/archive/20250311T180452-pr-2.md | 9 +++++ .changesets/archive/20250311T180600-pr-3.md | 9 +++++ .changesets/archive/20250311T180640-pr-4.md | 9 +++++ CHANGELOG.md | 14 +++++++ automation-tests.php | 2 +- constants.php | 2 +- package.json | 2 +- readme.txt | 43 ++++++++++----------- 9 files changed, 74 insertions(+), 25 deletions(-) create mode 100644 .changesets/archive/20250311T180310-pr-1.md create mode 100644 .changesets/archive/20250311T180452-pr-2.md create mode 100644 .changesets/archive/20250311T180600-pr-3.md create mode 100644 .changesets/archive/20250311T180640-pr-4.md diff --git a/.changesets/archive/20250311T180310-pr-1.md b/.changesets/archive/20250311T180310-pr-1.md new file mode 100644 index 0000000..f8f41a0 --- /dev/null +++ b/.changesets/archive/20250311T180310-pr-1.md @@ -0,0 +1,9 @@ +--- +title: "fix: update documentation with clearer examples" +pr: 1 +author: "jasonbahl" +type: "fix" +breaking: false +description: | + Updated documentation to provide clearer examples +--- diff --git a/.changesets/archive/20250311T180452-pr-2.md b/.changesets/archive/20250311T180452-pr-2.md new file mode 100644 index 0000000..541ea2d --- /dev/null +++ b/.changesets/archive/20250311T180452-pr-2.md @@ -0,0 +1,9 @@ +--- +title: "BREAKING CHANGE: Refactor API endpoints" +pr: 2 +author: "jasonbahl" +type: "other" +breaking: true +description: | + This completely changes how the API endpoints work +--- diff --git a/.changesets/archive/20250311T180600-pr-3.md b/.changesets/archive/20250311T180600-pr-3.md new file mode 100644 index 0000000..c4cfce3 --- /dev/null +++ b/.changesets/archive/20250311T180600-pr-3.md @@ -0,0 +1,9 @@ +--- +title: "feat!: Add new authentication system" +pr: 3 +author: "jasonbahl" +type: "other" +breaking: true +description: | + This introduces a completely new authentication system that is not backward compatible +--- diff --git a/.changesets/archive/20250311T180640-pr-4.md b/.changesets/archive/20250311T180640-pr-4.md new file mode 100644 index 0000000..fb3a2f2 --- /dev/null +++ b/.changesets/archive/20250311T180640-pr-4.md @@ -0,0 +1,9 @@ +--- +title: "fix: update bug in script that was breaking things" +pr: 4 +author: "jasonbahl" +type: "fix" +breaking: false +description: | + Fixed a bug that was causing the script to break +--- diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c27977..4cbba43 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ All notable changes to this project will be documented in this file. +## v2.0.0 - 2025-03-11 + +> ⚠️ **BREAKING CHANGES**: This release contains breaking changes. Please review before upgrading. + +### Breaking Changes + +- feat!: Add new authentication system ([#3](https://github.com/jasonbahl/automation-tests/pull/3)) +- BREAKING CHANGE: Refactor API endpoints ([#2](https://github.com/jasonbahl/automation-tests/pull/2)) + +### Bug Fixes + +- fix: update bug in script that was breaking things ([#4](https://github.com/jasonbahl/automation-tests/pull/4)) +- fix: update documentation with clearer examples ([#1](https://github.com/jasonbahl/automation-tests/pull/1)) + ## v1.0.0 - 2025-03-11 > ⚠️ **BREAKING CHANGES**: This release contains breaking changes. Please review before upgrading. diff --git a/automation-tests.php b/automation-tests.php index 9949b4e..b9f7197 100644 --- a/automation-tests.php +++ b/automation-tests.php @@ -2,7 +2,7 @@ /** * Plugin Name: Automation Tests * Description: A plugin to test automation workflows. - * Version: 1.0.0 + * Version: 2.0.0 * Author: Jason Bahl */ diff --git a/constants.php b/constants.php index 7f32582..4e64f16 100644 --- a/constants.php +++ b/constants.php @@ -1,6 +1,6 @@