From ae1ee9569b9b93d76fdc349ec13787ccfa3f96b9 Mon Sep 17 00:00:00 2001 From: Philipp <32090713+ouun@users.noreply.github.com> Date: Thu, 28 May 2026 22:41:12 +0200 Subject: [PATCH] chore(main): release 1.1.6 --- .release-please-manifest.json | 2 +- docs/05-reference/04-changelog.md | 20 ++++++++++++++++++++ src/MilliRules.php | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a7fd6a0..cf06893 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.1.5" + ".": "1.1.6" } diff --git a/docs/05-reference/04-changelog.md b/docs/05-reference/04-changelog.md index cf3eb20..616e9cb 100644 --- a/docs/05-reference/04-changelog.md +++ b/docs/05-reference/04-changelog.md @@ -6,6 +6,26 @@ menu_order: 40 # Changelog +## [1.1.6](https://github.com/MilliPress/MilliRules/compare/v1.1.5...v1.1.6) (2026-05-28) + + +### Features + +* add current_site condition for multisite blog targeting ([ee02693](https://github.com/MilliPress/MilliRules/commit/ee0269375718d44d8925796106851d6ba0061837)) +* register rules from array config via Rules::register_rule() ([2e4a8a5](https://github.com/MilliPress/MilliRules/commit/2e4a8a51b8064c2d5e3843f114f2bd8675e1562e)) + + +### Bug Fixes + +* **docs:** Update placeholder syntax from colon to dot notation ([ccd1243](https://github.com/MilliPress/MilliRules/commit/ccd12437cc759553d0a06414dd25180bf34a1acc)) +* honor NOT IN semantics for conditions with array values ([1da7e65](https://github.com/MilliPress/MilliRules/commit/1da7e65e97ff53a650c656a6254dac3154b57c82)) +* resolve nested {request:*} and {wp:*} placeholders ([6fab125](https://github.com/MilliPress/MilliRules/commit/6fab125bdc0e0810b6b882c33d45dd54cad867e8)) + + +### Refactoring + +* drop unreachable callable guard in register_condition/register_action ([dbbf8e7](https://github.com/MilliPress/MilliRules/commit/dbbf8e7ec9d0bbc933360f9aa98293e59774eed6)) + ## [1.1.5](https://github.com/MilliPress/MilliRules/compare/v1.1.4...v1.1.5) (2026-05-04) diff --git a/src/MilliRules.php b/src/MilliRules.php index 638cb2c..d08ee1c 100644 --- a/src/MilliRules.php +++ b/src/MilliRules.php @@ -58,7 +58,7 @@ class MilliRules * @since 0.4.0 * @var string */ - public const VERSION = '1.1.5'; // x-release-please-version + public const VERSION = '1.1.6'; // x-release-please-version /** * Private constructor prevents instantiation.