Skip to content

Commit 64d6707

Browse files
authored
Merge pull request #328 from DerekStride/v0.3.9
chore(release): 0.3.9
2 parents d1f0294 + 0c7453c commit 64d6707

File tree

6 files changed

+27
-5
lines changed

6 files changed

+27
-5
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
22

33
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.
44

5+
## [0.3.9](https://github.com/derekstride/tree-sitter-sql/compare/v0.3.8...v0.3.9) (2025-09-23)
6+
7+
8+
### Features
9+
10+
* DROP FUNCTION ([8908c0c](https://github.com/derekstride/tree-sitter-sql/commit/8908c0cbc1ffcb99a041bdc6210b638ca79df043))
11+
* parse mysql extract function ([b9a1ead](https://github.com/derekstride/tree-sitter-sql/commit/b9a1ead41a6459afd3e80ededbac493bc9e3b785))
12+
* Recognize TSQL [@param](https://github.com/param) as identifier ([a01d41c](https://github.com/derekstride/tree-sitter-sql/commit/a01d41cbbb530403b149ce32b860c443d9fca9e5))
13+
* select into ([dc6df46](https://github.com/derekstride/tree-sitter-sql/commit/dc6df4644198e1b1f6cefafd25c8dfd6b6162afa))
14+
* Single Quote for TSQL (N prefix) ([48bf7f7](https://github.com/derekstride/tree-sitter-sql/commit/48bf7f73eeb65ecfc9dfcfa0c4f17e5503713b28))
15+
* support nordic/umlaut chars ([9f76c5a](https://github.com/derekstride/tree-sitter-sql/commit/9f76c5a3dde34ed6896ad47e30d9e49c6a9f5a5b))
16+
* TSQL OBJECT_ID ([b99b491](https://github.com/derekstride/tree-sitter-sql/commit/b99b4916e54c63bd93475738eecb0ca21ec05528))
17+
18+
19+
### Bug Fixes
20+
21+
* **ast:** Add database name to object_reference ([8d8c236](https://github.com/derekstride/tree-sitter-sql/commit/8d8c236f5278fe9e334f6f429c59a521743b828a))
22+
* incorrect function signature in external scanner ([177cfcc](https://github.com/derekstride/tree-sitter-sql/commit/177cfcc6f64bac48b7f0b0db6f8b832dc393986e))
23+
* module path in binding_test.go ([0e34d25](https://github.com/derekstride/tree-sitter-sql/commit/0e34d25a858b4420d4fb0163d58533da417faf26))
24+
* Remove duplicate keyword returns ([4050937](https://github.com/derekstride/tree-sitter-sql/commit/4050937724cf523a4a213cf8a67d06cb4920080b))
25+
* rewrite MySQL quoted identifier ([293b0ac](https://github.com/derekstride/tree-sitter-sql/commit/293b0ac0408e176c32c29b9d4cb642732fb7016f))
26+
527
## [0.3.8](https://github.com/derekstride/tree-sitter-sql/compare/v0.3.7...v0.3.8) (2025-02-10)
628

729

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.13)
22

33
project(tree-sitter-sql
4-
VERSION "0.3.8"
4+
VERSION "0.3.9"
55
DESCRIPTION "Tree-sitter Grammar for SQL"
66
HOMEPAGE_URL "git+https://github.com/derekstride/tree-sitter-sql.git"
77
LANGUAGES C)

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tree-sitter-sequel"
33
description = "Tree-sitter Grammar for SQL"
4-
version = "0.3.8"
4+
version = "0.3.9"
55
authors = ["derek stride"]
66
license = "MIT"
77
readme = "README.md"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@derekstride/tree-sitter-sql",
3-
"version": "0.3.8",
3+
"version": "0.3.9",
44
"description": "Tree-sitter Grammar for SQL",
55
"main": "bindings/node",
66
"types": "bindings/node",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
[project]
66
name = "tree-sitter-sql"
77
description = "Tree-sitter Grammar for SQL"
8-
version = "0.3.8"
8+
version = "0.3.9"
99
keywords = ["incremental", "parsing", "tree-sitter", "sql"]
1010
classifiers = [
1111
"Intended Audience :: Developers",

tree-sitter.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
}
1515
],
1616
"metadata": {
17-
"version": "0.3.8",
17+
"version": "0.3.9",
1818
"license": "MIT",
1919
"description": "Tree-sitter Grammar for SQL",
2020
"authors": [

0 commit comments

Comments
 (0)