Skip to content

Commit 461d767

Browse files
committed
chore(release): 0.2.0
1 parent 8a188d5 commit 461d767

File tree

13 files changed

+22
-8
lines changed

13 files changed

+22
-8
lines changed

CHANGELOG.md

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

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
# [0.2.0](https://github.com/ikatyang/tree-sitter-vue/compare/v0.1.0...v0.2.0) (2021-03-14)
6+
7+
8+
### Features
9+
10+
* upgrade to [email protected] ([b74c6e0](https://github.com/ikatyang/tree-sitter-vue/commit/b74c6e0))
11+
12+
13+
### BREAKING CHANGES
14+
15+
* require tree-sitter 0.19+
16+
17+
18+
519
# 0.1.0 (2019-10-04)
620

721

docs/assets/tree-sitter-playground-0.16.7/playground.js renamed to docs/assets/tree-sitter-playground-0.19.3/playground.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ let tree;
277277
const startPosition = queryEditor.posFromIndex(error.index);
278278
const endPosition = {
279279
line: startPosition.line,
280-
ch: startPosition.ch + (error.length || 1)
280+
ch: startPosition.ch + (error.length || Infinity)
281281
};
282282

283283
if (error.index === queryText.length) {
Binary file not shown.
Binary file not shown.

docs/assets/web-tree-sitter-0.16.7/tree-sitter.js

Lines changed: 0 additions & 1 deletion
This file was deleted.
Binary file not shown.

docs/assets/web-tree-sitter-0.19.3/tree-sitter.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.

docs/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<head>
55
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
7-
<link rel="stylesheet" href="assets/tree-sitter-playground-0.16.7/style.css" media="screen" type="text/css">
7+
<link rel="stylesheet" href="assets/tree-sitter-playground-0.19.3/style.css" media="screen" type="text/css">
88
<title>Tree-sitter Vue Playground</title>
99
</head>
1010

@@ -24,7 +24,7 @@
2424
}
2525
</style>
2626

27-
<h1><a href="https://github.com/ikatyang/tree-sitter-vue">Tree-sitter Vue</a> <span class="version">v0.1.0</span></h1>
27+
<h1><a href="https://github.com/ikatyang/tree-sitter-vue">Tree-sitter Vue</a> <span class="version">v0.2.0</span></h1>
2828

2929
<div id="playground-container" style="visibility: hidden;">
3030

@@ -61,11 +61,11 @@ <h4>Tree</h4>
6161

6262
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.45.0/codemirror.min.js"></script>
6363

64-
<script>LANGUAGE_BASE_URL = "assets/tree-sitter-vue-0.1.0";</script>
65-
<script src="assets/web-tree-sitter-0.16.7/tree-sitter.js"></script>
64+
<script>LANGUAGE_BASE_URL = "assets/tree-sitter-vue-0.2.0";</script>
65+
<script src="assets/web-tree-sitter-0.19.3/tree-sitter.js"></script>
6666

6767
<script src="https://cdnjs.cloudflare.com/ajax/libs/clusterize.js/0.18.0/clusterize.min.js"></script>
68-
<script src="assets/tree-sitter-playground-0.16.7/playground.js"></script>
68+
<script src="assets/tree-sitter-playground-0.19.3/playground.js"></script>
6969

7070
<script>
7171
((codeExample, queryExample) => {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tree-sitter-vue",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"description": "Vue grammar for tree-sitter",
55
"keywords": [
66
"parser",

0 commit comments

Comments
 (0)