Skip to content

Commit 883efaa

Browse files
committed
feat: create minor update and support PHP8.4
1 parent 7897e46 commit 883efaa

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.5.0"
3+
version = "1.6.0"
44
edition = "2021"
55
authors = ["Imam Ali Mustofa <[email protected]>"]
66

src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ lazy_static::lazy_static! {
3030
static ref STATEMENT_REGISTRY: Mutex<HashMap<String, libsql::Statement>> = Mutex::new(HashMap::new());
3131
}
3232

33-
pub const LIBSQL_PHP_VERSION: &str = "1.5.0";
33+
pub const LIBSQL_PHP_VERSION: &str = "1.6.0";
3434

3535
/// Represents the flag for opening a database in read-only mode.
3636
pub const LIBSQL_OPEN_READONLY: i32 = 1;
@@ -462,7 +462,7 @@ pub extern "C" fn libsql_php_extension_info(_module: *mut ext_php_rs::zend::Modu
462462
ext_php_rs::ffi::php_info_print_table_row(
463463
2,
464464
"LibSQL PHP version\0".as_ptr() as *const i8,
465-
"1.5.0\0".as_ptr() as *const i8,
465+
"1.6.0\0".as_ptr() as *const i8,
466466
);
467467
ext_php_rs::ffi::php_info_print_table_row(
468468
2,

0 commit comments

Comments
 (0)