Skip to content

Commit

Permalink
Merge pull request #304 from DerekStride/release-v0.3.8
Browse files Browse the repository at this point in the history
chore(release): 0.3.8
  • Loading branch information
DerekStride authored Feb 13, 2025
2 parents c30e2c6 + d2e585a commit 8a4578b
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 27 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.

## [0.3.8](https://github.com/derekstride/tree-sitter-sql/compare/v0.3.7...v0.3.8) (2025-02-10)


### Features

* add athena `unload` statement ([b87b5e9](https://github.com/derekstride/tree-sitter-sql/commit/b87b5e95da3e2ea2f32b94dcc5101efac4136a38))
* include scanner in go bindings ([9d9b968](https://github.com/derekstride/tree-sitter-sql/commit/9d9b968bfddb19bb973483bb594155a38f1428b6))
* Postgres escape strings ([a0d7b1a](https://github.com/derekstride/tree-sitter-sql/commit/a0d7b1a57a20c46526076261063a3e9b76d7c068))


### Bug Fixes

* pyproject url needs http(s)? too ([43510aa](https://github.com/derekstride/tree-sitter-sql/commit/43510aae16c826d0cfa9f956e4bbfed054167b80))
* repository url needs to be http(s) ([6eae31e](https://github.com/derekstride/tree-sitter-sql/commit/6eae31e2fce9bf8d9ed51283a570112fcb8c64d0))
* termination of Postgres escape strings ([7583f23](https://github.com/derekstride/tree-sitter-sql/commit/7583f23560a99debc56072205a273eb54b34b439))

## [0.3.7](https://github.com/derekstride/tree-sitter-sql/compare/v0.3.6...v0.3.7) (2024-11-21)


Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.13)

project(tree-sitter-sql
VERSION "0.3.7"
VERSION "0.3.8"
DESCRIPTION "Tree-sitter Grammar for SQL"
HOMEPAGE_URL "git+https://github.com/derekstride/tree-sitter-sql.git"
LANGUAGES C)
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tree-sitter-sequel"
description = "Tree-sitter Grammar for SQL"
version = "0.3.7"
version = "0.3.8"
authors = ["derek stride"]
license = "MIT"
readme = "README.md"
Expand All @@ -24,4 +24,4 @@ tree-sitter-language = "0.1"
cc = "~1.2.1"

[dev-dependencies]
tree-sitter = "0.24.3"
tree-sitter = "~0.25.0"
21 changes: 3 additions & 18 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@derekstride/tree-sitter-sql",
"version": "0.3.7",
"version": "0.3.8",
"description": "Tree-sitter Grammar for SQL",
"main": "bindings/node",
"types": "bindings/node",
"scripts": {
"install": "npx --yes --package=tree-sitter-cli -- tree-sitter generate && node-gyp-build",
"prestart": "npx --yes --package=tree-sitter-cli -- tree-sitter build --wasm",
"start": "npx --yes --package=tree-sitter-cli -- tree-sitter playground",
"install": "npx --yes --package=tree-sitter-cli@v0.24.7 -- tree-sitter generate && node-gyp-build",
"prestart": "npx --yes --package=tree-sitter-cli@v0.24.7 -- tree-sitter build --wasm",
"start": "npx --yes --package=tree-sitter-cli@v0.24.7 -- tree-sitter playground",
"release": "commit-and-tag-version",
"test": "node --test bindings/node/*_test.js",
"prebuildify": "prebuildify --napi --strip"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "tree-sitter-sql"
description = "Tree-sitter Grammar for SQL"
version = "0.3.7"
version = "0.3.8"
keywords = ["incremental", "parsing", "tree-sitter", "sql"]
classifiers = [
"Intended Audience :: Developers",
Expand Down
2 changes: 1 addition & 1 deletion tree-sitter.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
}
],
"metadata": {
"version": "0.3.7",
"version": "0.3.8",
"license": "MIT",
"description": "Tree-sitter Grammar for SQL",
"authors": [
Expand Down

0 comments on commit 8a4578b

Please sign in to comment.