Skip to content

Commit 2d0dbc0

Browse files
authored
Release 3.0.0-rc.6 (#444)
## Release `3.0.0-rc.6` Version bump and changelog update for release `3.0.0-rc.6`. **Changelog draft:** * Don't take a write lock for SET statements (fixes "database is locked" on connect) ([#443](#443)) * Add REVERSE() to user defined functions ([#434](#434)) * LALR(1) parser from official MySQL grammar ([#429](#429)) **Full changelog:** v3.0.0-rc.5...release/v3.0.0-rc.6 ## Next steps 1. **Review** the changes in this pull request. 2. **Push** any additional edits to this branch (`release/v3.0.0-rc.6`). 3. **Merge** this pull request to complete the release. Merging will automatically build the plugin ZIP and create a [GitHub release](https://github.com/WordPress/sqlite-database-integration/releases). > [!NOTE] > This is a **pre-release**. It will not be deployed to [WordPress.org](https://wordpress.org/plugins/sqlite-database-integration/).
1 parent 026e2ed commit 2d0dbc0

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

packages/mysql-on-sqlite/src/version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
*
66
* This constant needs to be updated on plugin release!
77
*/
8-
define( 'SQLITE_DRIVER_VERSION', '3.0.0-rc.5' );
8+
define( 'SQLITE_DRIVER_VERSION', '3.0.0-rc.6' );

packages/plugin-sqlite-database-integration/load.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: SQLite Database Integration
44
* Description: SQLite database driver drop-in.
55
* Author: The WordPress Team
6-
* Version: 3.0.0-rc.5
6+
* Version: 3.0.0-rc.6
77
* Requires PHP: 7.2
88
* Textdomain: sqlite-database-integration
99
*

packages/plugin-sqlite-database-integration/readme.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Contributors: wordpressdotorg, aristath, janjakes, zieladam, berislav.grgic
44
Requires at least: 6.4
55
Tested up to: 6.9
66
Requires PHP: 7.2
7-
Stable tag: 3.0.0-rc.5
7+
Stable tag: 3.0.0-rc.6
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
1010
Tags: performance, database
@@ -44,6 +44,12 @@ with SQLite syntax and behavior.
4444

4545
== Changelog ==
4646

47+
= 3.0.0-rc.6 =
48+
49+
* Don't take a write lock for SET statements (fixes "database is locked" on connect) ([#443](https://github.com/WordPress/sqlite-database-integration/pull/443))
50+
* Add REVERSE() to user defined functions ([#434](https://github.com/WordPress/sqlite-database-integration/pull/434))
51+
* LALR(1) parser from official MySQL grammar ([#429](https://github.com/WordPress/sqlite-database-integration/pull/429))
52+
4753
= 3.0.0-rc.5 =
4854

4955
* Default SQLite connections to WAL ([#405](https://github.com/WordPress/sqlite-database-integration/pull/405))

0 commit comments

Comments
 (0)