Skip to content

Commit 511953a

Browse files
cpsievertclaude
andcommitted
Add CHANGELOG for ggsql Python package 0.1.0 release
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 385fe58 commit 511953a

5 files changed

Lines changed: 11 additions & 3 deletions

File tree

.github/workflows/python-release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,9 @@ jobs:
6767
# aarch64 assembly (missing __ARM_ARCH). 2_28 (AlmaLinux 8, gcc 8+)
6868
# provides a new enough toolchain.
6969
manylinux: 2_28
70+
# Forward GGSQL_SKIP_GENERATE into the Docker container so the
71+
# build script uses the pre-generated parser files.
72+
docker-options: -e GGSQL_SKIP_GENERATE=1
7073

7174
- uses: actions/upload-artifact@v4
7275
with:

ggsql-python/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Changelog
2+
3+
## 0.1.0
4+
5+
Initial release.

ggsql-python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ggsql-python"
3-
version = "0.1.0"
3+
version = "0.1.3"
44
edition = "2021"
55
license = "MIT"
66
description = "Python bindings for ggsql"

ggsql-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 = "ggsql"
7-
version = "0.1.0"
7+
version = "0.1.3"
88
description = "SQL extension for declarative data visualization"
99
readme = "README.md"
1010
requires-python = ">=3.10"

ggsql-python/python/ggsql/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"execute",
2828
"render_altair",
2929
]
30-
__version__ = "0.1.0"
30+
__version__ = "0.1.3"
3131

3232
# Type alias for any Altair chart type
3333
AltairChart = Union[

0 commit comments

Comments
 (0)