From daeb5354a66efff42f73ead11c5ea8b228f7745c Mon Sep 17 00:00:00 2001 From: Imam Ali Mustofa Date: Thu, 8 Aug 2024 09:16:21 +0700 Subject: [PATCH] Bump version to turso-php-extension-v1.2.7 based on patch changes. --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/lib.rs | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e8caacc..078e53f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1123,7 +1123,7 @@ dependencies = [ [[package]] name = "libsql_php" -version = "1.2.6" +version = "1.2.7" dependencies = [ "base64 0.22.0", "ext-php-rs", diff --git a/Cargo.toml b/Cargo.toml index 5d28895..9a278cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libsql_php" -version = "1.2.6" +version = "1.2.7" edition = "2021" authors = ["Imam Ali Mustofa "] diff --git a/src/lib.rs b/src/lib.rs index e18ee97..81f54e5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -26,7 +26,7 @@ lazy_static::lazy_static! { static ref STATEMENT_REGISTRY: Mutex> = Mutex::new(HashMap::new()); } -pub const LIBSQL_PHP_VERSION: &str = "1.2.6"; +pub const LIBSQL_PHP_VERSION: &str = "1.2.7"; /// Represents the flag for opening a database in read-only mode. pub const LIBSQL_OPEN_READONLY: i32 = 1; @@ -397,7 +397,7 @@ pub extern "C" fn libsql_php_extension_info(_module: *mut ext_php_rs::zend::Modu ext_php_rs::ffi::php_info_print_table_row( 2, "LibSQL PHP version\0".as_ptr() as *const i8, - "1.2.6\0".as_ptr() as *const i8, + "1.2.7\0".as_ptr() as *const i8, ); ext_php_rs::ffi::php_info_print_table_row( 2,