Skip to content

Commit

Permalink
Bump version to turso-php-extension-v1.4.0 based on minor changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
darkterminal committed Sep 14, 2024
1 parent 6c61b1a commit 9276d63
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libsql_php"
version = "1.3.0"
version = "1.4.0"
edition = "2021"
authors = ["Imam Ali Mustofa <[email protected]>"]

Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ lazy_static::lazy_static! {
static ref STATEMENT_REGISTRY: Mutex<HashMap<String, libsql::Statement>> = Mutex::new(HashMap::new());
}

pub const LIBSQL_PHP_VERSION: &str = "1.3.0";
pub const LIBSQL_PHP_VERSION: &str = "1.4.0";

/// Represents the flag for opening a database in read-only mode.
pub const LIBSQL_OPEN_READONLY: i32 = 1;
Expand Down Expand Up @@ -435,7 +435,7 @@ pub extern "C" fn libsql_php_extension_info(_module: *mut ext_php_rs::zend::Modu
ext_php_rs::ffi::php_info_print_table_row(
2,
"LibSQL PHP version\0".as_ptr() as *const i8,
"1.3.0\0".as_ptr() as *const i8,
"1.4.0\0".as_ptr() as *const i8,
);
ext_php_rs::ffi::php_info_print_table_row(
2,
Expand Down

0 comments on commit 9276d63

Please sign in to comment.