Skip to content
Open
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 @@
{
".": "0.1.8"
".": "0.1.9"
}
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [0.1.9](https://github.com/WordPress/presence-api/compare/v0.1.8...v0.1.9) (2026-07-25)


### Features

* aggregate props from merged PRs onto release PR ([05441f1](https://github.com/WordPress/presence-api/commit/05441f154299304a7d67966705f9ac43e3b440f7))


### Bug Fixes

* default presence widgets to top of dashboard on fresh install ([aa2e12f](https://github.com/WordPress/presence-api/commit/aa2e12fa0bf40cdf709b68a8e88592e5e6a173a3))
* default presence widgets to top of dashboard on fresh install ([6432478](https://github.com/WordPress/presence-api/commit/643247849919909f3808b78b9fb8f34918db128a))
* use inline script to load aggregate-props from workspace ([a7aa1f1](https://github.com/WordPress/presence-api/commit/a7aa1f1903a11dfafe6c0e441bac69f6ae451c6f))
* use inline script to load aggregate-props from workspace ([a2231d0](https://github.com/WordPress/presence-api/commit/a2231d0c268afed9c5101d3f65c84c9b78cb3c97))

## [0.1.8](https://github.com/WordPress/presence-api/compare/v0.1.7...v0.1.8) (2026-07-24)


Expand Down
4 changes: 2 additions & 2 deletions presence-api.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: Presence API
* Description: System-wide presence and awareness for WordPress.
* Version: 0.1.8
* Version: 0.1.9
* Requires at least: 7.0
* Requires PHP: 7.4
* Author: WordPress Core Team
Expand Down Expand Up @@ -45,7 +45,7 @@ function () {
return;
}

define( 'WP_PRESENCE_VERSION', '0.1.8' );
define( 'WP_PRESENCE_VERSION', '0.1.9' );
define( 'WP_PRESENCE_DB_VERSION', '1' );
define( 'WP_PRESENCE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'WP_PRESENCE_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
Expand Down
7 changes: 6 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: joefusco, intenzi, ashishjii
Tags: presence, awareness, heartbeat, real-time
Requires at least: 7.0
Tested up to: 7.0
Stable tag: 0.1.8
Stable tag: 0.1.9
Requires PHP: 7.4
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -53,6 +53,11 @@ Or [try it in WordPress Playground](https://playground.wordpress.net/?blueprint-

== Changelog ==

= 0.1.9 =
* Aggregate props from merged PRs onto release PR.
* Default presence widgets to top of dashboard on fresh install.
* Use inline script to load aggregate-props from workspace.

= 0.1.8 =
* Add AI Tools disclosure to automated contributor PR body.
* Add concurrency group, use default_branch instead of hardcoded main.
Expand Down