Skip to content

Commit 6f32ec7

Browse files
author
Dylan Storey
committed
fix: loosen rusqlite version pin to >=0.31 for downstream compatibility
Tight semver pin on rusqlite caused libsqlite3-sys link conflicts when graphqlite was used alongside other crates depending on different rusqlite versions. Bump to 0.3.1.
1 parent 8217b3c commit 6f32ec7

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

bindings/python/src/graphqlite/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from .utils import escape_string, sanitize_rel_type, CYPHER_RESERVED
99
from ._platform import get_loadable_path
1010

11-
__version__ = "0.3.0"
11+
__version__ = "0.3.1"
1212
__all__ = [
1313
"BulkInsertResult",
1414
"Connection", "connect", "wrap", "load", "loadable_path",

bindings/rust/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.

bindings/rust/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graphqlite"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
edition = "2021"
55
description = "SQLite extension for graph queries using Cypher"
66
license = "MIT"
@@ -12,7 +12,7 @@ exclude = ["tests/", "target/"]
1212
include = ["src/**/*", "libs/**/*", "Cargo.toml", "README.md", "LICENSE"]
1313

1414
[dependencies]
15-
rusqlite = { version = "0.31", features = ["bundled", "load_extension"] }
15+
rusqlite = { version = ">=0.31", features = ["bundled", "load_extension"] }
1616
serde = { version = "1.0", features = ["derive"] }
1717
serde_json = "1.0"
1818
thiserror = "1.0"

0 commit comments

Comments
 (0)