Skip to content

Commit

Permalink
0.3.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-pinkus committed Feb 19, 2023
1 parent 4a59d68 commit 1101ee5
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tree-sitter-swift"
description = "swift grammar for the tree-sitter parsing library"
version = "0.3.4"
version = "0.3.5"
keywords = ["incremental", "parsing", "swift"]
categories = ["parsing", "text-editors"]
repository = "https://github.com/alex-pinkus/tree-sitter-swift"
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION := 0.3.4
VERSION := 0.3.5

# Repository
SRC_DIR := src
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ To use this parser to parse Swift code, you'll want to depend on either the Rust
### Rust
To use the Rust crate, you'll add this to your `Cargo.toml`:
```
tree-sitter = "0.20.0"
tree-sitter-swift = "=0.3.4"
tree-sitter = "0.20.4"
tree-sitter-swift = "=0.3.5"
```

Then you can use a `tree-sitter` parser with the language declared here:
Expand All @@ -35,7 +35,7 @@ let tree = parser.parse(&my_source_code, None)
To use this from NPM, you'll add similar dependencies to `package.json`:
```
"dependencies: {
"tree-sitter-swift": "0.3.4",
"tree-sitter-swift": "0.3.5",
"tree-sitter": "^0.20.0"
}
```
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tree-sitter-swift",
"version": "0.3.4",
"version": "0.3.5",
"description": "A tree-sitter grammar for the Swift programming language.",
"main": "bindings/node/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion test-npm-package/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1101ee5

Please sign in to comment.