| @@ -2,10 +2,10 @@ | ||
| 2 | 2 | /** |
| 3 | 3 | * Plugin Name: SQLite Database Integration |
| 4 | 4 | * Description: SQLite database driver drop-in. |
| 5 | 5 | * Author: The WordPress Team |
| 6 | - * Version: 2.1.16 | |
| 7 | - * Requires PHP: 7.0 | |
| 6 | + * Version: 2.2.0 | |
| 7 | + * Requires PHP: 7.2 | |
| 8 | 8 | * Textdomain: sqlite-database-integration |
| 9 | 9 | * |
| 10 | 10 | * This feature plugin allows WordPress to use SQLite instead of MySQL as its database. |
| 11 | 11 | * |
| @@ -10,8 +10,14 @@ | ||
| 10 | 10 | * This feature plugin allows WordPress to use SQLite instead of MySQL as its database. |
| 11 | 11 | * |
| 12 | 12 | * @package wp-sqlite-integration |
| 13 | 13 | */ |
| 14 | + | |
| 15 | +/** | |
| 16 | + * Load the "SQLITE_DRIVER_VERSION" constant. | |
| 17 | + * This constant needs to be updated on plugin release! | |
| 18 | + */ | |
| 19 | +require_once __DIR__ . '/version.php'; | |
| 14 | 20 | |
| 15 | 21 | define( 'SQLITE_MAIN_FILE', __FILE__ ); |
| 16 | 22 | |
| 17 | 23 | require_once __DIR__ . '/php-polyfills.php'; |