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
5 changes: 5 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@ jobs:
# the wordpress.org CDN when downloading the core zip.
set +e
for attempt in 1 2 3; do
# Docker can leave root-owned wp-env files after a partial start.
# Restore runner ownership so subsequent attempts can clean them up.
if [ -d "$HOME/wp-env" ]; then
sudo chown -R "$USER:$USER" "$HOME/wp-env"
fi
echo "Attempt $attempt: starting WordPress test environment..."
pnpm run env:start:test
EXIT_CODE=$?
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.15.0
2.15.1
2 changes: 1 addition & 1 deletion inc/class-wp-ultimo.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ final class WP_Ultimo {
* @since 2.1.0
* @var string
*/
const VERSION = '2.15.0';
const VERSION = '2.15.1';

/**
* Core log handle for Ultimate Multisite.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.15.0",
"version": "2.15.1",
"name": "ultimate-multisite",
"title": "Ultimate Multisite",
"homepage": "https://ultimatemultisite.com/",
Expand Down
6 changes: 5 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: multisite, domain mapping, wordpress multisite, multisite saas, waas
Requires at least: 5.3
Requires PHP: 8.2
Tested up to: 7.1
Stable tag: 2.15.0
Stable tag: 2.15.1
License: GPLv2
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -251,6 +251,10 @@ Data collected includes:
No personal data, domains, IP addresses, or payment information are collected.

== Changelog ==

= 2.15.1 =
Version 2.15.1 - Released on 2026-08-19
- Improved: WordPress compatibility metadata now reflects testing through WordPress 7.1.
Version [2.15.0] - Released on 2026-07-30
- New: DirectAdmin hosting integration now supports domain mapping and guided setup.
- New: Administrators can review recent log errors directly from the dashboard.
Expand Down
4 changes: 2 additions & 2 deletions ultimate-multisite.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Ultimate Multisite
* Plugin URI: https://ultimatemultisite.com
* Description: Ultimate Multisite is a WordPress Multisite plugin that turns your network into a complete Website-as-a-Service (WaaS) platform with subscriptions, site provisioning, domain mapping, and customer management. Formerly WP Ultimo.
* Version: 2.15.0
* Version: 2.15.1
* Author: Ultimate Multisite Community
* Author URI: https://ultimatemultisite.com
* License: GPLv2 or later
Expand Down Expand Up @@ -65,7 +65,7 @@
define('WP_ULTIMO_PLUGIN_FILE', __FILE__);
}
if ( ! defined('WP_ULTIMO_VERSION')) {
define('WP_ULTIMO_VERSION', '2.15.0');
define('WP_ULTIMO_VERSION', '2.15.1');
Comment thread
superdav42 marked this conversation as resolved.
}
if ( ! defined('MULTISITE_ULTIMATE_UPDATE_URL')) {
define('MULTISITE_ULTIMATE_UPDATE_URL', 'https://ultimatemultisite.com/');
Expand Down
Loading