Skip to content

Commit c85ffb5

Browse files
authored
Merge pull request #233 from DerekStride/v0.2.0
chore(release): v0.2.0
2 parents 7c2f696 + 8071c44 commit c85ffb5

File tree

3 files changed

+31
-4
lines changed

3 files changed

+31
-4
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.2.0](https://github.com/derekstride/tree-sitter-sql/compare/v0.1.1...v0.2.0) (2023-12-15)
6+
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
* The `(ordered_columns)` node in the `create_index`
11+
statement has been replaced with `(index_fields)`, with `(field)` child
12+
nodes which can have `column: (_)`, `expression: (_)` or `function:
13+
(_)` named child nodes.
14+
15+
### Features
16+
17+
* Add complex index fields to CREATE INDEX statements ([97806c5](https://github.com/derekstride/tree-sitter-sql/commit/97806c5474f330260a6ae41c7614264a56bfddd1))
18+
* postgresql expression subscripts ([c54eff2](https://github.com/derekstride/tree-sitter-sql/commit/c54eff259d5ec577593b46f67646188836c48d1e))
19+
20+
21+
### Bug Fixes
22+
23+
* **ci:** pin node-gyp to v10 ([0aaf90a](https://github.com/derekstride/tree-sitter-sql/commit/0aaf90a094a8c98efab920fb170dc8300c194e39))
24+
* ensure scanner.c is included in npm package ([ec6bb68](https://github.com/derekstride/tree-sitter-sql/commit/ec6bb68ecb1478211bf6864e161464572c9cf59e))
25+
* The scannar can now scan tag name with any (expected '$') ASCII char instead of only letters. ([dbe4c04](https://github.com/derekstride/tree-sitter-sql/commit/dbe4c04cd5fd78216ffc992658663ff2bf7d2471))
26+
527
## [0.1.1](https://github.com/derekstride/tree-sitter-sql/compare/v0.1.0...v0.1.1) (2023-11-22)
628

729

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ number and preparing for a release. Run the following to generate the release:
6363
$ npm run release
6464
```
6565
66-
Verify that all the changes are correct and push the updates to a new branch, including the git tags.
66+
Verify that all the changes are correct and push the updates to a new branch.
6767
6868
```
69-
git push && git push --tags
69+
git push
7070
```
7171
7272
Once that PR is merged, create a new Release [on Github](https://github.com/DerekStride/tree-sitter-sql/releases). When

package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@derekstride/tree-sitter-sql",
3-
"version": "0.1.1",
3+
"version": "0.2.0",
44
"description": "Tree-sitter Grammar for SQL",
55
"main": "bindings/node",
66
"scripts": {
@@ -47,5 +47,10 @@
4747
"keywords": [
4848
"parser",
4949
"sql"
50-
]
50+
],
51+
"commit-and-tag-version": {
52+
"skip": {
53+
"tag": true
54+
}
55+
}
5156
}

0 commit comments

Comments
 (0)