Skip to content
This repository was archived by the owner on Mar 17, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .changesets/archive/20250311T180310-pr-1.md
Original file line number Diff line number Diff line change
@@ -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
---
9 changes: 9 additions & 0 deletions .changesets/archive/20250311T180452-pr-2.md
Original file line number Diff line number Diff line change
@@ -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
---
9 changes: 9 additions & 0 deletions .changesets/archive/20250311T180600-pr-3.md
Original file line number Diff line number Diff line change
@@ -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
---
9 changes: 9 additions & 0 deletions .changesets/archive/20250311T180640-pr-4.md
Original file line number Diff line number Diff line change
@@ -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
---
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion automation-tests.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/

Expand Down
2 changes: 1 addition & 1 deletion constants.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

define('AUTOMATION_TESTS_VERSION', '1.0.0');
define('AUTOMATION_TESTS_VERSION', '2.0.0');
define('AUTOMATION_TESTS_PLUGIN_NAME', 'automation-tests');


2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "automation-tests",
"version": "1.0.0",
"version": "2.0.0",
"description": "A plugin to test automation workflows",
"main": "index.js",
"scripts": {
Expand Down
43 changes: 21 additions & 22 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: jasonbahl
Tags: testing, automation
Requires at least: 5.0
Tested up to: 6.2
Stable tag: 1.0.0
Stable tag: 2.0.0
Requires PHP: 7.4
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Expand All @@ -27,32 +27,15 @@ This plugin is a testing ground for GitHub Actions workflows before implementing

== Upgrade Notice ==

= 1.0.0 =
= 2.0.0 =

**⚠️ BREAKING CHANGES**: This release contains breaking changes that may require updates to your code.

* BREAKING CHANGE: Refactor authentication system (https://github.com/jasonbahl/automation-tests/pull/1000)
* BREAKING CHANGE: Refactor API endpoints (https://github.com/jasonbahl/automation-tests/pull/999)
* feat!: Add new authentication system (https://github.com/jasonbahl/automation-tests/pull/3)
* BREAKING CHANGE: Refactor API endpoints (https://github.com/jasonbahl/automation-tests/pull/2)

Please review these changes before upgrading.



== Changelog ==

= 1.0.0 =

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

**Breaking Changes**

* BREAKING CHANGE: Refactor authentication system (https://github.com/jasonbahl/automation-tests/pull/1000)
* BREAKING CHANGE: Refactor API endpoints (https://github.com/jasonbahl/automation-tests/pull/999)

**Bug Fixes**

* fix: update bug in script that was breaking things (https://github.com/jasonbahl/automation-tests/pull/1001)

= 0.2.1 =

**New Features**
Expand Down Expand Up @@ -84,4 +67,20 @@ Please review these changes before upgrading.
= 0.0.1 =
* Initial release
* Basic WordPress plugin structure
* GitHub Workflows for automating release management
* GitHub Workflows for automating release management
== Changelog ==

= 2.0.0 =

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

**Breaking Changes**

* feat!: Add new authentication system (https://github.com/jasonbahl/automation-tests/pull/3)
* BREAKING CHANGE: Refactor API endpoints (https://github.com/jasonbahl/automation-tests/pull/2)

**Bug Fixes**

* fix: update bug in script that was breaking things (https://github.com/jasonbahl/automation-tests/pull/4)
* fix: update documentation with clearer examples (https://github.com/jasonbahl/automation-tests/pull/1)