Skip to content

Commit 71a8429

Browse files
authored
Bump version to 0.3.0 and prepare for release (#400)
* Bump to version 0.3.0 * Update change logs * Update CHANGELOG.md
1 parent d0872bb commit 71a8429

12 files changed

Lines changed: 27 additions & 54 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## [Unreleased]
22

3+
## 0.3.0 - 2026-04-29
4+
35
### Added
46

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

1316
### Fixed
1417

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

3237
### Changed

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

1717
[workspace.package]
18-
version = "0.2.7"
18+
version = "0.3.0"
1919
edition = "2021"
2020
authors = ["ggsql Team"]
2121
license = "MIT"
@@ -25,8 +25,8 @@ description = "A declarative visualization language that extends SQL with powerf
2525

2626
[workspace.dependencies]
2727
# workspace packages
28-
tree-sitter-ggsql = { path = "tree-sitter-ggsql", version = "0.2.7" }
29-
ggsql = { path = "src", version = "0.2.7" }
28+
tree-sitter-ggsql = { path = "tree-sitter-ggsql", version = "0.3.0" }
29+
ggsql = { path = "src", version = "0.3.0" }
3030

3131
# Parsing
3232
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.7"
7+
version = "0.3.0"
88
description = "Jupyter kernel for ggsql - SQL extension for declarative data visualization"
99
readme = "README.md"
1010
license = { text = "MIT" }

ggsql-vscode/CHANGELOG.md

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

3-
## 0.2.7
3+
## [Unreleased]
44

5-
Alpha release.
6-
7-
- Switch macOS installer from .dmg to .pkg
8-
9-
## 0.2.6
10-
11-
Alpha release.
12-
13-
- Set auditwheel=repair for Jupyter macOS builds
14-
- Use dylibbundler to bundle libs on macOS
5+
## 0.3.0
156

16-
## 0.2.5
17-
18-
Alpha release.
19-
20-
- Install ODBC in manylinux container in GHA release workflows
21-
22-
## 0.2.4
23-
24-
Alpha release.
7+
- Add cell delimiters and code lens actions when running in Positron (#366)
258

26-
- Further tweaks in GHA release workflows
27-
28-
## 0.2.3
29-
30-
Alpha release.
31-
32-
- Build natively for targets in GHA release workflows
33-
34-
## 0.2.2
35-
36-
Alpha release.
37-
38-
- Install ODBC in Jupyter release GHA workflows (#319)
39-
40-
## 0.2.1
41-
42-
Alpha release.
9+
## 0.2.1 - 0.2.7
4310

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

4614
## 0.2.0

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.7",
5+
"version": "0.3.0",
66
"publisher": "ggsql",
77
"engines": {
88
"vscode": "^1.75.0"

ggsql-wasm/demo/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tree-sitter-ggsql/bindings/python/__init__.py

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tree-sitter-ggsql/package.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)