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
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.1.0"
version = "0.1.6"
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.1.0" }
ggsql = { path = "src", version = "0.1.0" }
tree-sitter-ggsql = { path = "tree-sitter-ggsql", version = "0.1.6" }
ggsql = { path = "src", version = "0.1.6" }

# 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.1.0"
version = "0.1.6"
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.1.0"
version = "0.1.6"
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.1.0"
version = "0.1.6"
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.1.0"
__version__ = "0.1.6"

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

## 0.1.6

- Initial pre-alpha release.

## 0.1.1

- Rename the WITH clause to DRAW
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.1.0",
"version": "0.1.6",
"publisher": "ggsql",
"engines": {
"vscode": "^1.75.0"
Expand Down
6 changes: 3 additions & 3 deletions 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 ggsql-wasm/demo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ggsql-wasm-demo",
"version": "0.1.0",
"version": "0.0.0",
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've put these internal packages as 0.0.0, since they are never intended to be imported by external users and that way we don't have to keep the versioning in sync.

"private": true,
"type": "module",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions ggsql-wasm/library/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-wasm/library/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ggsql-wasm-lib",
"version": "0.1.0",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
Expand Down
7 changes: 2 additions & 5 deletions 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.1.0",
"version": "0.1.6",
"license": "MIT",
"description": "ggsql grammar for tree-sitter",
"authors": [
Expand Down
Loading