Skip to content

Commit daeb535

Browse files
committed
Bump version to turso-php-extension-v1.2.7 based on patch changes.
1 parent 52e6f1e commit daeb535

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libsql_php"
3-
version = "1.2.6"
3+
version = "1.2.7"
44
edition = "2021"
55
authors = ["Imam Ali Mustofa <[email protected]>"]
66

src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ lazy_static::lazy_static! {
2626
static ref STATEMENT_REGISTRY: Mutex<HashMap<String, libsql::Statement>> = Mutex::new(HashMap::new());
2727
}
2828

29-
pub const LIBSQL_PHP_VERSION: &str = "1.2.6";
29+
pub const LIBSQL_PHP_VERSION: &str = "1.2.7";
3030

3131
/// Represents the flag for opening a database in read-only mode.
3232
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
397397
ext_php_rs::ffi::php_info_print_table_row(
398398
2,
399399
"LibSQL PHP version\0".as_ptr() as *const i8,
400-
"1.2.6\0".as_ptr() as *const i8,
400+
"1.2.7\0".as_ptr() as *const i8,
401401
);
402402
ext_php_rs::ffi::php_info_print_table_row(
403403
2,

0 commit comments

Comments
 (0)