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

## [0.1.8](https://github.com/WordPress/sync-storage/compare/v0.1.7...v0.1.8) (2026-08-21)


### Bug Fixes

* bound every CI job with a timeout and stop masking install failures ([3401ef3](https://github.com/WordPress/sync-storage/commit/3401ef325212a7b95683a460016fe8a3dceb06fa))
* bound every CI job with a timeout and stop masking install failures ([38fff6a](https://github.com/WordPress/sync-storage/commit/38fff6a49198e3992c916edbb439d4a5c155987a))

## [0.1.7](https://github.com/WordPress/sync-storage/compare/v0.1.6...v0.1.7) (2026-08-20)


Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: collaboration, real-time, gutenberg, presence, yjs
Requires at least: 7.0
Tested up to: 7.0
Requires PHP: 7.4
Stable tag: 0.1.7
Stable tag: 0.1.8
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand Down
4 changes: 2 additions & 2 deletions sync-storage.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: Sync Storage
* Description: WP_Sync_Storage implementation for WordPress collaborative editing.
* Version: 0.1.7
* Version: 0.1.8
* Requires at least: 7.0
* Requires PHP: 7.4
* Requires Plugins: presence-api, gutenberg
Expand Down Expand Up @@ -58,7 +58,7 @@ function () {
return;
}

define( 'WP_SYNC_STORAGE_VERSION', '0.1.7' );
define( 'WP_SYNC_STORAGE_VERSION', '0.1.8' );
define( 'WP_SYNC_STORAGE_DB_VERSION', 1 );
define( 'WP_SYNC_STORAGE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'WP_SYNC_STORAGE_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
Expand Down