Skip to content

Commit 07a0927

Browse files
committed
Bump version to turso-php-extension-v1.3.0 based on minor changes.
1 parent 4d6c6db commit 07a0927

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.7"
3+
version = "1.3.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.2.7";
33+
pub const LIBSQL_PHP_VERSION: &str = "1.3.0";
3434

3535
/// Represents the flag for opening a database in read-only mode.
3636
pub const LIBSQL_OPEN_READONLY: i32 = 1;
@@ -403,7 +403,7 @@ pub extern "C" fn libsql_php_extension_info(_module: *mut ext_php_rs::zend::Modu
403403
ext_php_rs::ffi::php_info_print_table_row(
404404
2,
405405
"LibSQL PHP version\0".as_ptr() as *const i8,
406-
"1.2.7\0".as_ptr() as *const i8,
406+
"1.3.0\0".as_ptr() as *const i8,
407407
);
408408
ext_php_rs::ffi::php_info_print_table_row(
409409
2,

0 commit comments

Comments
 (0)