Skip to content

Commit

Permalink
Bump version to turso-php-extension-v1.2.7 based on patch changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
darkterminal committed Aug 8, 2024
1 parent 52e6f1e commit daeb535
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.2.6"
version = "1.2.7"
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 @@ -26,7 +26,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.2.6";
pub const LIBSQL_PHP_VERSION: &str = "1.2.7";

/// Represents the flag for opening a database in read-only mode.
pub const LIBSQL_OPEN_READONLY: i32 = 1;
Expand Down Expand Up @@ -397,7 +397,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.2.6\0".as_ptr() as *const i8,
"1.2.7\0".as_ptr() as *const i8,
);
ext_php_rs::ffi::php_info_print_table_row(
2,
Expand Down

0 comments on commit daeb535

Please sign in to comment.