Skip to content
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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.1.5"
".": "1.1.6"
}
20 changes: 20 additions & 0 deletions docs/05-reference/04-changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
2 changes: 1 addition & 1 deletion src/MilliRules.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading