Skip to content

Commit c6eac13

Browse files
committed
chore: add patch version
1 parent de63e4a commit c6eac13

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

src/lib.rs

+2-2
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.3";
34+
pub const LIBSQL_PHP_VERSION: &str = "1.4.4";
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.3\0".as_ptr() as *const i8,
457+
"1.4.4\0".as_ptr() as *const i8,
458458
);
459459
ext_php_rs::ffi::php_info_print_table_row(
460460
2,

0 commit comments

Comments
 (0)