Skip to content

Commit e1b2ca1

Browse files
committed
ready for v0.1.8
1 parent 6cbd44f commit e1b2ca1

File tree

4 files changed

+38
-7
lines changed

4 files changed

+38
-7
lines changed

DEVELOP.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,14 @@ npx tree-sitter test
1919
Run tests matching a specific filter:
2020
```
2121
npx tree-sitter test -f 'Node'
22-
```
22+
```
23+
24+
# Publish
25+
26+
## Python
27+
28+
Publish locally.
29+
30+
```
31+
python -m pip install .
32+
```

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Andreas Kollegger
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gram-data/tree-sitter-gram",
3-
"version": "0.1.7",
3+
"version": "0.1.8",
44
"description": "subject-oriented notation for structured data",
55
"homepage": "https://gram-data.github.io",
66
"repository": "github:gram-data/tree-sitter-gram",
@@ -29,8 +29,8 @@
2929
"author": "",
3030
"license": "ISC",
3131
"dependencies": {
32-
"node-gyp-build": "^4.8.2",
33-
"node-addon-api": "^8.2.1"
32+
"node-gyp-build": "^4.8.4",
33+
"node-addon-api": "^8.2.2"
3434
},
3535
"peerDependencies": {
3636
"tree-sitter": "^0.21.0"
@@ -41,9 +41,9 @@
4141
}
4242
},
4343
"devDependencies": {
44-
"eslint": "^9.13.0",
44+
"eslint": "^9.15.0",
4545
"node-gyp": "^10.2.0",
4646
"prebuildify": "^6.0.1",
47-
"tree-sitter-cli": "^0.24.3"
47+
"tree-sitter-cli": "^0.24.4"
4848
}
4949
}

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-gram"
77
description = "Gram grammar for tree-sitter"
8-
version = "0.0.1"
8+
version = "0.1.8"
99
keywords = ["incremental", "parsing", "tree-sitter", "gram"]
1010
classifiers = [
1111
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)