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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## [Unreleased]

## 0.3.0 - 2026-04-29

### Added

- Add cell delimiters and code lens actions to the Positron extension (#366)
Expand All @@ -9,6 +11,7 @@ that `FROM table VISUALIZE x, y` and `VISUALIZE x, y FROM table` are equivalent
queries (#369)
- CLI now has built-in documentation through the `docs` command as well as a
skill for llms through the `skill` command (#361)
- The ggsql wasm package is now published on GitHub Releases and NPM (#367)

### Fixed

Expand All @@ -27,6 +30,8 @@ and writer errors now report user-facing aesthetic names (`x`, `y`, `panel`,
based on the active coordinate system and facet layout (#388).
- Fixed opacity calculation in point layers with Vega-Lite (#393)
- Fixed an issue with case-sensitive column references in mappings (#374)
- Fixed SQL function set quantifiers in the ggsql grammar (#395)
- Fixed loading of dynamic libraries in PyPI build of `ggsql-jupyter` (#355, #392)
- Fixed an issue with OOB null-filtering, leading to missing median lines in boxplots (#394)

### Changed
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 @@ -15,7 +15,7 @@ default-members = [
resolver = "2"

[workspace.package]
version = "0.2.7"
version = "0.3.0"
edition = "2021"
authors = ["ggsql Team"]
license = "MIT"
Expand All @@ -25,8 +25,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.7" }
ggsql = { path = "src", version = "0.2.7" }
tree-sitter-ggsql = { path = "tree-sitter-ggsql", version = "0.3.0" }
ggsql = { path = "src", version = "0.3.0" }

# 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.7"
version = "0.3.0"
description = "Jupyter kernel for ggsql - SQL extension for declarative data visualization"
readme = "README.md"
license = { text = "MIT" }
Expand Down
42 changes: 5 additions & 37 deletions ggsql-vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,46 +1,14 @@
# Changelog

## 0.2.7
## [Unreleased]

Alpha release.

- Switch macOS installer from .dmg to .pkg

## 0.2.6

Alpha release.

- Set auditwheel=repair for Jupyter macOS builds
- Use dylibbundler to bundle libs on macOS
## 0.3.0

## 0.2.5

Alpha release.

- Install ODBC in manylinux container in GHA release workflows

## 0.2.4

Alpha release.
- Add cell delimiters and code lens actions when running in Positron (#366)

- Further tweaks in GHA release workflows

## 0.2.3

Alpha release.

- Build natively for targets in GHA release workflows

## 0.2.2

Alpha release.

- Install ODBC in Jupyter release GHA workflows (#319)

## 0.2.1

Alpha release.
## 0.2.1 - 0.2.7

- Switch macOS installer from .dmg to .pkg
- Install ODBC in release GHA workflows (#317)

## 0.2.0
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.7",
"version": "0.3.0",
"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.7",
"version": "0.3.0",
"license": "MIT",
"description": "ggsql grammar for tree-sitter",
"authors": [
Expand Down
Loading