Skip to content

Commit 857ddb4

Browse files
funcppclaude
andcommitted
fix: bump version to 0.1.5 and fix smoke test API
- Fix smoke test to use correct analyze() return type (list[LineageResult]) - Bump version in pyproject.toml and Cargo.toml to 0.1.5 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 8f371f9 commit 857ddb4

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,10 @@ jobs:
7878
pip install dist/*.whl
7979
python -c "
8080
import sqllineage
81-
result = sqllineage.analyze('SELECT a FROM t')
82-
assert len(result.source_tables()) > 0
83-
print('OK:', result)
81+
results = sqllineage.analyze('SELECT a FROM t')
82+
assert len(results) == 1
83+
assert len(results[0].tables.inputs) > 0
84+
print('OK:', results[0])
8485
"
8586
8687
publish:

sqllineage-python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "sqllineage-rs"
7-
version = "0.1.4"
7+
version = "0.1.5"
88
description = "Extract table and column-level lineage from SQL"
99
license = "MIT OR Apache-2.0"
1010
requires-python = ">=3.9"

sqllineage/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqllineage"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
edition = "2024"
55
description = "Extract table and column-level lineage from SQL"
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)