Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release-jupyter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ jobs:
include:
- target: x86_64
runner: ubuntu-latest
- target: aarch64
runner: ubuntu-24.04-arm
# - target: aarch64
# runner: ubuntu-24.04-arm
env:
GGSQL_SKIP_GENERATE: "1"
steps:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/release-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,11 @@ jobs:
- name: Build ggsql binary (x86_64)
run: cargo build --release --bin ggsql --bin ggsql-jupyter

- name: Ad-hoc sign binaries
run: |
codesign --force --sign - target/release/ggsql
codesign --force --sign - target/release/ggsql-jupyter

- name: Build DMG installer (x86_64)
run: cargo packager --release --formats dmg
env:
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ default-members = [
resolver = "2"

[workspace.package]
version = "0.2.3"
version = "0.2.4"
edition = "2021"
authors = ["ggsql Team"]
license = "MIT"
Expand All @@ -26,8 +26,8 @@ description = "A declarative visualization language that extends SQL with powerf

[workspace.dependencies]
# workspace packages
tree-sitter-ggsql = { path = "tree-sitter-ggsql", version = "0.2.3" }
ggsql = { path = "src", version = "0.2.3" }
tree-sitter-ggsql = { path = "tree-sitter-ggsql", version = "0.2.4" }
ggsql = { path = "src", version = "0.2.4" }

# Parsing
csscolorparser = "0.8.1"
Expand Down
2 changes: 1 addition & 1 deletion ggsql-jupyter/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "ggsql-jupyter"
version = "0.2.3"
version = "0.2.4"
description = "Jupyter kernel for ggsql - SQL extension for declarative data visualization"
readme = "README.md"
license = { text = "MIT" }
Expand Down
2 changes: 1 addition & 1 deletion ggsql-python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ggsql-python"
version = "0.2.3"
version = "0.2.4"
edition = "2021"
authors.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion ggsql-python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "ggsql"
version = "0.2.3"
version = "0.2.4"
description = "SQL extension for declarative data visualization"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion ggsql-python/python/ggsql/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"execute",
"render_altair",
]
__version__ = "0.2.3"
__version__ = "0.2.4"

# Type alias for any Altair chart type
AltairChart = Union[
Expand Down
6 changes: 6 additions & 0 deletions ggsql-vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.2.4

Alpha release.

- Further tweaks in GHA release workflows

## 0.2.3

Alpha release.
Expand Down
4 changes: 2 additions & 2 deletions ggsql-vscode/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ggsql-vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ggsql",
"displayName": "ggsql",
"description": "Syntax highlighting and language runtime for ggsql - SQL with declarative visualization",
"version": "0.2.3",
"version": "0.2.4",
"publisher": "ggsql",
"engines": {
"vscode": "^1.75.0"
Expand Down
2 changes: 1 addition & 1 deletion ggsql-wasm/demo/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tree-sitter-ggsql/bindings/python/__init__.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tree-sitter-ggsql/package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tree-sitter-ggsql/pyproject.toml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tree-sitter-ggsql/tree-sitter.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
}
],
"metadata": {
"version": "0.2.3",
"version": "0.2.4",
"license": "MIT",
"description": "ggsql grammar for tree-sitter",
"authors": [
Expand Down
Loading