Skip to content

Commit

Permalink
Release 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ubolonton committed Sep 26, 2020
1 parent ded0af1 commit 9d8c961
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]
- Upgraded `tree-sitter` crate to [fix](https://github.com/tree-sitter/tree-sitter/pull/644) an issue where [query captures miss some nodes](https://github.com/tree-sitter/tree-sitter/issues/659).

## [0.11.0] - 2020-09-26
- Upgraded `tree-sitter` crate to [fix](https://github.com/tree-sitter/tree-sitter/pull/644) an issue where [query captures miss some nodes](https://github.com/tree-sitter/tree-sitter/issues/659). This also added a check for definitely-invalid patterns when creating a query.

## [0.10.0] - 2020-08-01
- Used keywords instead of strings for field names.
Expand Down Expand Up @@ -80,7 +82,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [0.1.0] - 2020-01-27
Initial release

[Unreleased]: https://github.com/ubolonton/emacs-tree-sitter/compare/0.10.0...HEAD
[Unreleased]: https://github.com/ubolonton/emacs-tree-sitter/compare/0.11.0...HEAD
[0.11.0]: https://github.com/ubolonton/emacs-tree-sitter/compare/0.10.0...0.11.0
[0.10.0]: https://github.com/ubolonton/emacs-tree-sitter/compare/0.9.2...0.10.0
[0.9.2]: https://github.com/ubolonton/emacs-tree-sitter/compare/0.9.1...0.9.2
[0.9.1]: https://github.com/ubolonton/emacs-tree-sitter/compare/0.9.0...0.9.1
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "emacs-tree-sitter"
version = "0.10.0"
version = "0.11.0"
authors = ["Tuấn-Anh Nguyễn <[email protected]>"]
edition = "2018"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion lisp/tree-sitter-core.el
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

;; Load the dynamic module at compile time as well, to satisfy the byte compiler.
(eval-and-compile
(defconst tree-sitter--dyn-version "0.10.0"
(defconst tree-sitter--dyn-version "0.11.0"
"Required version of the dynamic module `tree-sitter-dyn'.")
(require 'tree-sitter-dyn-get)
(tree-sitter-dyn-get-ensure tree-sitter--dyn-version))
Expand Down
2 changes: 1 addition & 1 deletion lisp/tree-sitter.el
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
;; Author: Tuấn-Anh Nguyễn <[email protected]>
;; Keywords: languages tools parsers dynamic-modules tree-sitter
;; Homepage: https://github.com/ubolonton/emacs-tree-sitter
;; Version: 0.10.0
;; Version: 0.11.0
;; Package-Requires: ((emacs "25.1"))
;; License: MIT

Expand Down

0 comments on commit 9d8c961

Please sign in to comment.