Skip to content

Commit 0a35233

Browse files
committed
chore: bump version to 0.1.2 and update changelog
1 parent db5a168 commit 0a35233

File tree

3 files changed

+22
-5
lines changed

3 files changed

+22
-5
lines changed

‎CHANGELOG.md‎

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## 0.1.2
4+
5+
- Add WordPress Playground blueprint for one-click testing.
6+
- Remove demo CLI command from production builds.
7+
- Split CI into separate PHPCS, PHPUnit, and Multisite workflows.
8+
- Exclude vendor directory from release zip.
9+
- Add readme.txt for WordPress.org directory submission.
10+
- Add WordPress.org repository compliance files (CONTRIBUTING, CODEOWNERS, CODE_OF_CONDUCT).
11+
- Move community health files to .github/.
12+
- Replace deprecated get_page_by_title() with WP_Query.
13+
- Add ABSPATH guards to db-viewer.php and demo-seeder.php.
14+
- Exclude .claude directory from release zip.
15+
16+
## 0.1.1
17+
18+
- Fix Plugin Check errors for directory submission.
19+
320
## 0.1.0
421

522
Initial release.
@@ -15,11 +32,11 @@ Initial release.
1532
- Admin bar indicator: avatar stack for same-page users, dropdown grouped by "On this page" / "Elsewhere", alphabetically sorted.
1633
- Post list "Editors" column with avatar stacks.
1734
- Users list "Online" filter tab.
18-
- WP-CLI: `set`, `list`, `summary`, `cleanup`, `demo` (with `--keep-alive` and `--cleanup`).
35+
- WP-CLI: `set`, `list`, `summary`, `cleanup`.
1936
- Debugger widget (WP_DEBUG only): heartbeat monitor with live table viewer.
2037
- `wp_presence_default_ttl` filter and `WP_PRESENCE_DEFAULT_TTL` constant.
2138
- Multisite-aware `uninstall.php`.
2239
- Full i18n with `.pot` file.
2340
- WCAG AA accessibility: ARIA labels, `aria-live`, keyboard navigation.
24-
- 60 PHPUnit tests, 119 assertions.
41+
- 59 PHPUnit tests, 118 assertions.
2542
- Playwright e2e tests with screenshot artifacts.

‎presence-api.php‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Plugin Name: Presence API
44
* Description: System-wide presence and awareness for WordPress.
5-
* Version: 0.1.1
5+
* Version: 0.1.2
66
* Requires at least: 7.0
77
* Requires PHP: 7.4
88
* Author: Joe Fusco
@@ -44,7 +44,7 @@ function () {
4444
return;
4545
}
4646

47-
define( 'WP_PRESENCE_VERSION', '0.1.1' );
47+
define( 'WP_PRESENCE_VERSION', '0.1.2' );
4848
define( 'WP_PRESENCE_DB_VERSION', '1' );
4949
define( 'WP_PRESENCE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
5050
if ( ! defined( 'WP_PRESENCE_DEFAULT_TTL' ) ) {

‎readme.txt‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: flavor
33
Tags: presence, awareness, heartbeat, real-time
44
Requires at least: 7.0
55
Tested up to: 7.0
6-
Stable tag: 0.1.1
6+
Stable tag: 0.1.2
77
Requires PHP: 7.4
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html

0 commit comments

Comments
 (0)