Skip to content

Commit efa4010

Browse files
committed
0.4.1 release
1 parent e324c09 commit efa4010

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

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-swift"
33
description = "swift grammar for the tree-sitter parsing library"
4-
version = "0.4.0"
4+
version = "0.4.1"
55
keywords = ["incremental", "parsing", "swift"]
66
categories = ["parsing", "text-editors"]
77
repository = "https://github.com/alex-pinkus/tree-sitter-swift"

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION := 0.4.0
1+
VERSION := 0.4.1
22

33
# Repository
44
SRC_DIR := src

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ To use this parser to parse Swift code, you'll want to depend on either the Rust
1515
To use the Rust crate, you'll add this to your `Cargo.toml`:
1616
```
1717
tree-sitter = "0.20.4"
18-
tree-sitter-swift = "=0.4.0"
18+
tree-sitter-swift = "=0.4.1"
1919
```
2020

2121
Then you can use a `tree-sitter` parser with the language declared here:
@@ -35,7 +35,7 @@ let tree = parser.parse(&my_source_code, None)
3535
To use this from NPM, you'll add similar dependencies to `package.json`:
3636
```
3737
"dependencies: {
38-
"tree-sitter-swift": "0.4.0",
38+
"tree-sitter-swift": "0.4.1",
3939
"tree-sitter": "^0.20.0"
4040
}
4141
```

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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-swift",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"description": "A tree-sitter grammar for the Swift programming language.",
55
"main": "bindings/node/index.js",
66
"scripts": {

test-npm-package/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)