From 9b31acc680ef2fcf5683a2657e31baa4c2576165 Mon Sep 17 00:00:00 2001 From: Dimitrios Pantazis Date: Mon, 5 Jan 2026 15:04:17 +0200 Subject: [PATCH 1/3] feat: Update min required schema version to 3.2.0 --- CHANGELOG.md | 6 ++++++ composer.json | 2 +- shepherd.php | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bbfc576..8fbc891 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. This project adhere to the [Semantic Versioning](http://semver.org/) standard. +## [0.2.0] 2026-01-05 + +* Feature - Update minimum required version of the stellarwp/schema library to v3.2.0. + +[0.2.0]: https://github.com/stellarwp/shepherd/releases/tag/0.2.0 + ## [0.1.0] 2025-12-17 * Feature - Introduces a method `run` to the Regulator class which enables running a set of tasks synchronously. diff --git a/composer.json b/composer.json index 3c482cc..4d8590e 100644 --- a/composer.json +++ b/composer.json @@ -35,7 +35,7 @@ "require": { "php": ">=7.4", "stellarwp/db": "^1.1", - "stellarwp/schema": "^3.1.2", + "stellarwp/schema": "^3.2", "woocommerce/action-scheduler": "3.9.3", "psr/log": "^1.1" }, diff --git a/shepherd.php b/shepherd.php index fb6a22b..14f61b1 100644 --- a/shepherd.php +++ b/shepherd.php @@ -9,7 +9,7 @@ * @wordpress-plugin * Plugin Name: Shepherd * Description: A library for offloading tasks to background processes. - * Version: 0.1.0 + * Version: 0.2.0 * Author: StellarWP * Author URI: https://stellarwp.com * License: GPL-2.0-or-later From 790e845b644047dba10bd29ee1cf68fe26ff3a36 Mon Sep 17 00:00:00 2001 From: Dimitrios Pantazis Date: Mon, 5 Jan 2026 15:07:39 +0200 Subject: [PATCH 2/3] Apply suggestion from @dpanta94 --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fbc891..bf41492 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. This projec ## [0.2.0] 2026-01-05 -* Feature - Update minimum required version of the stellarwp/schema library to v3.2.0. +* Version - Update minimum required version of the stellarwp/schema library to v3.2.0. [0.2.0]: https://github.com/stellarwp/shepherd/releases/tag/0.2.0 From 511f29130e7c80cbfaf635f9a4a02898b01b2091 Mon Sep 17 00:00:00 2001 From: Dimitrios Pantazis Date: Mon, 5 Jan 2026 15:09:11 +0200 Subject: [PATCH 3/3] docs: fix links of 0.1.0 --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf41492..e7284b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,7 @@ All notable changes to this project will be documented in this file. This projec * Feature - Introduces a method `run` to the Regulator class which enables running a set of tasks synchronously. -[0.0.9]: https://github.com/stellarwp/shepherd/releases/tag/0.0.9 +[0.1.0]: https://github.com/stellarwp/shepherd/releases/tag/0.1.0 ## [0.0.9] 2025-11-17