Skip to content

Commit 429784b

Browse files
author
Dylan Storey
committed
chore: bump version to 0.3.0 and add brew install
New features in this release: - CSR graph caching for 2x algorithm speedup - Bulk insert operations for 100-500x faster graph construction - Now available via `brew install graphqlite`
1 parent 269c6cd commit 429784b

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Store and query graph data directly in SQLite—combining the simplicity of a si
1212
## Installation
1313

1414
```bash
15+
brew install graphqlite # macOS/Linux (Homebrew)
1516
pip install graphqlite # Python
1617
cargo add graphqlite # Rust
1718
```

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.2.1"
11+
__version__ = "0.3.0"
1212
__all__ = [
1313
"BulkInsertResult",
1414
"Connection", "connect", "wrap", "load", "loadable_path",

bindings/rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graphqlite"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
edition = "2021"
55
description = "SQLite extension for graph queries using Cypher"
66
license = "MIT"

0 commit comments

Comments
 (0)