Skip to content

Commit 3439298

Browse files
authored
Bump to version 0.2.5 (#325)
* Install ODBC in manylinux container * Bump to version 0.2.5
1 parent 53b7b4f commit 3439298

15 files changed

Lines changed: 34 additions & 25 deletions

File tree

.github/workflows/release-jupyter.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ jobs:
3939
include:
4040
- target: x86_64
4141
runner: ubuntu-latest
42-
# - target: aarch64
43-
# runner: ubuntu-24.04-arm
42+
- target: aarch64
43+
runner: ubuntu-24.04-arm
4444
env:
4545
GGSQL_SKIP_GENERATE: "1"
4646
steps:
@@ -51,9 +51,6 @@ jobs:
5151
name: tree-sitter-generated
5252
path: tree-sitter-ggsql/src/
5353

54-
- name: Install ODBC
55-
run: sudo apt-get install -y unixodbc-dev
56-
5754
- name: Build wheels
5855
uses: PyO3/maturin-action@v1
5956
with:
@@ -62,6 +59,12 @@ jobs:
6259
working-directory: ggsql-jupyter
6360
manylinux: 2_28
6461
docker-options: -e GGSQL_SKIP_GENERATE=1
62+
before-script-linux: |
63+
if command -v yum >/dev/null 2>&1; then
64+
yum install -y unixODBC-devel
65+
elif command -v apt-get >/dev/null 2>&1; then
66+
apt-get update && apt-get install -y unixodbc-dev
67+
fi
6568
6669
- uses: actions/upload-artifact@v4
6770
with:

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ default-members = [
1616
resolver = "2"
1717

1818
[workspace.package]
19-
version = "0.2.4"
19+
version = "0.2.5"
2020
edition = "2021"
2121
authors = ["ggsql Team"]
2222
license = "MIT"
@@ -26,8 +26,8 @@ description = "A declarative visualization language that extends SQL with powerf
2626

2727
[workspace.dependencies]
2828
# workspace packages
29-
tree-sitter-ggsql = { path = "tree-sitter-ggsql", version = "0.2.4" }
30-
ggsql = { path = "src", version = "0.2.4" }
29+
tree-sitter-ggsql = { path = "tree-sitter-ggsql", version = "0.2.5" }
30+
ggsql = { path = "src", version = "0.2.5" }
3131

3232
# Parsing
3333
csscolorparser = "0.8.1"

ggsql-jupyter/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-jupyter"
7-
version = "0.2.4"
7+
version = "0.2.5"
88
description = "Jupyter kernel for ggsql - SQL extension for declarative data visualization"
99
readme = "README.md"
1010
license = { text = "MIT" }

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.2.4"
3+
version = "0.2.5"
44
edition = "2021"
55
authors.workspace = true
66
license.workspace = true

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.2.4"
7+
version = "0.2.5"
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.2.4"
30+
__version__ = "0.2.5"
3131

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

ggsql-vscode/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 0.2.5
4+
5+
Alpha release.
6+
7+
- Install ODBC in manylinux container in GHA release workflows
8+
39
## 0.2.4
410

511
Alpha release.

ggsql-vscode/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ggsql-vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "ggsql",
33
"displayName": "ggsql",
44
"description": "Syntax highlighting and language runtime for ggsql - SQL with declarative visualization",
5-
"version": "0.2.4",
5+
"version": "0.2.5",
66
"publisher": "ggsql",
77
"engines": {
88
"vscode": "^1.75.0"

0 commit comments

Comments
 (0)