Skip to content

Commit

Permalink
0.20.6
Browse files Browse the repository at this point in the history
  • Loading branch information
amaanq committed Aug 13, 2023
1 parent 54fa1fe commit a2b7bac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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-c"
description = "C grammar for the tree-sitter parsing library"
version = "0.20.5"
version = "0.20.6"
authors = ["Max Brunsfeld <[email protected]>"]
license = "MIT"
readme = "bindings/rust/README.md"
Expand Down
2 changes: 1 addition & 1 deletion bindings/rust/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ way.)
```toml
[dependencies]
tree-sitter = "0.20.10"
tree-sitter-c = "0.20.5"
tree-sitter-c = "0.20.6"
```

Typically, you will use the [language][language func] function to add this
Expand Down
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-c",
"version": "0.20.5",
"version": "0.20.6",
"description": "C grammar for node-tree-sitter",
"main": "bindings/node",
"keywords": [
Expand Down

1 comment on commit a2b7bac

@DennySun2020
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@amaanq Hi Amaan, I have a pending change #164 in the Pull Requests tab, which is to make c/c++ parser be able to parse Microsoft SEH extension - __try/__except/__finally/__leave.

Please refer to "SEH exception handling" in test/corpus/microsoft.txt for the test on this change.

Meanwhile, I have a project which consumes Tree-sitter from c# code, so now I have the robust c# binding code which enable c# developers to consume Tree-sitter parsers smoothly. Could you please help point me to the practice for adding c# binding code to Tree-sittrer?

Please sign in to comment.