Skip to content

Commit 1c9938c

Browse files
author
Dylan Bobby Storey
committed
chore: bump version to 0.4.2
Release highlights: - Fix UNWIND $param write paths: CREATE+SET, MERGE, literal+SET (#49) - Fix startNode(r)/endNode(r) alias collision in same RETURN (#50) - Fix CALL subquery MERGE inner variable scoping (#51) - Fix OPTIONAL MATCH WHERE null row preservation (#34b) - Fix WITH+MATCH+MERGE dispatch routing - Fix functions-in-SET with node property references - Sanitize SQL aliases from backtick-quoted Cypher identifiers (#55) - Cross-clause hardening test suite (38_cross_clause_hardening.sql) - All 12 historical expected failures promoted to passing regression suite - Test coverage: 937 CUnit, 46 functional, 346 Python, 245 Rust
1 parent 00ad7bb commit 1c9938c

7 files changed

Lines changed: 7 additions & 7 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.4.1"
11+
__version__ = "0.4.2"
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graphqlite"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
edition = "2021"
55
description = "SQLite extension for graph queries using Cypher"
66
license = "MIT"

docs/src/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,6 @@ This documentation follows the [Diátaxis](https://diataxis.fr/) framework:
9292

9393
## Version and License
9494

95-
Current version: **0.4.1** — MIT License
95+
Current version: **0.4.2** — MIT License
9696

9797
Source code and issue tracker: [https://github.com/colliery-io/graphqlite](https://github.com/colliery-io/graphqlite)

docs/src/reference/python-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Python API Reference
22

3-
Version: **0.4.1**
3+
Version: **0.4.2**
44

55
---
66

docs/src/reference/rust-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Rust API Reference
22

3-
Version: **0.4.1**
3+
Version: **0.4.2**
44

55
Crate: `graphqlite`
66

docs/src/tutorials/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Verify the installation:
2626

2727
```python
2828
import graphqlite
29-
print(graphqlite.__version__) # 0.4.1
29+
print(graphqlite.__version__) # 0.4.2
3030
```
3131

3232
## Step 2: Create an In-Memory Graph

0 commit comments

Comments
 (0)