diff --git a/wp/wp-content/plugins/sqlite-database-integration/load.php b/wp/wp-content/plugins/sqlite-database-integration/load.php index 49eb3089d..d8acddedf 100644 --- a/wp/wp-content/plugins/sqlite-database-integration/load.php +++ b/wp/wp-content/plugins/sqlite-database-integration/load.php @@ -3,9 +3,11 @@ * Plugin Name: SQLite Database Integration * Description: SQLite database driver drop-in. * Author: The WordPress Team - * Version: 3.0.0 + * Version: 3.0.1 * Requires PHP: 7.2 * Network: true + * License: GPL-2.0-or-later + * License URI: https://www.gnu.org/licenses/gpl-2.0.html * Textdomain: sqlite-database-integration * * This feature plugin allows WordPress to use SQLite instead of MySQL as its database. diff --git a/wp/wp-content/plugins/sqlite-database-integration/readme.txt b/wp/wp-content/plugins/sqlite-database-integration/readme.txt index 378f5713b..9fe541522 100644 --- a/wp/wp-content/plugins/sqlite-database-integration/readme.txt +++ b/wp/wp-content/plugins/sqlite-database-integration/readme.txt @@ -2,9 +2,9 @@ Contributors: wordpressdotorg, aristath, janjakes, zieladam, berislav.grgicak, bpayton, zaerl Requires at least: 6.4 -Tested up to: 7.0 +Tested up to: 7.1 Requires PHP: 7.2 -Stable tag: 3.0.0 +Stable tag: 3.0.1 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html Tags: sqlite, database @@ -66,6 +66,11 @@ Yes. The plugin replaces the default MySQL-based database layer with an SQLite-b == Changelog == += 3.0.1 = + +* Mark the plugin as compatible with WordPress 7.1 ([#497](https://github.com/WordPress/sqlite-database-integration/pull/497)) +* Fix fresh multisite database setup ([#492](https://github.com/WordPress/sqlite-database-integration/pull/492)) + = 3.0.0 = **SQLite Database Integration 3 is here! 🎉** diff --git a/wp/wp-content/plugins/sqlite-database-integration/wp-includes/database/version.php b/wp/wp-content/plugins/sqlite-database-integration/wp-includes/database/version.php index 505b4eadd..87a3a5ff4 100644 --- a/wp/wp-content/plugins/sqlite-database-integration/wp-includes/database/version.php +++ b/wp/wp-content/plugins/sqlite-database-integration/wp-includes/database/version.php @@ -9,4 +9,4 @@ * * This constant needs to be updated on plugin release! */ -define( 'SQLITE_DRIVER_VERSION', '3.0.0' ); +define( 'SQLITE_DRIVER_VERSION', '3.0.1' );