Skip to content

Commit 130b4cb

Browse files
authored
Merge pull request #16 from pandanotabear/main
chore: update build version
2 parents 730ea02 + 8c42db8 commit 130b4cb

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libsql_php"
3-
version = "1.4.2"
3+
version = "1.4.3"
44
edition = "2021"
55
authors = ["Imam Ali Mustofa <darkterminal@duck.com>"]
66

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ lazy_static::lazy_static! {
3131
static ref STATEMENT_REGISTRY: Mutex<HashMap<String, libsql::Statement>> = Mutex::new(HashMap::new());
3232
}
3333

34-
pub const LIBSQL_PHP_VERSION: &str = "1.4.2";
34+
pub const LIBSQL_PHP_VERSION: &str = "1.4.3";
3535

3636
/// Represents the flag for opening a database in read-only mode.
3737
pub const LIBSQL_OPEN_READONLY: i32 = 1;
@@ -454,7 +454,7 @@ pub extern "C" fn libsql_php_extension_info(_module: *mut ext_php_rs::zend::Modu
454454
ext_php_rs::ffi::php_info_print_table_row(
455455
2,
456456
"LibSQL PHP version\0".as_ptr() as *const i8,
457-
"1.4.2\0".as_ptr() as *const i8,
457+
"1.4.3\0".as_ptr() as *const i8,
458458
);
459459
ext_php_rs::ffi::php_info_print_table_row(
460460
2,

0 commit comments

Comments
 (0)