Skip to content

Commit 48b0679

Browse files
committed
Release 0.16.1
1 parent 2d96a5f commit 48b0679

File tree

5 files changed

+17
-8
lines changed

5 files changed

+17
-8
lines changed

CHANGELOG.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55

66
## [Unreleased]
77

8-
## 0.16.0 - 2021-12-08
8+
## [0.16.1] - 2021-12-11
9+
- Modified CI pipelines to publish additional pre-built dynamic modules. Their filenames include the platform they are built for. The files without platform in name will eventually be deprecated.
10+
+ `tsc-dyn.x86_64-apple-darwin.dylib` (same as `tsc-dyn.dylib`)
11+
+ `tsc-dyn.x86_64-unknown-linux-gnu.so` (same as `tsc-dyn.so`)
12+
+ `tsc-dyn.x86_64-pc-windows-msvc.dll` (same as `tsc-dyn.dll`)
13+
+ `tsc-dyn.aarch64-apple-darwin.dylib` (new, for Apple Silicon)
14+
15+
## [0.16.0] - 2021-12-08
916
- Upgraded `tree-sitter` crate to 0.20.0, which:
1017
+ Changed the semantics of range-restricted query to report matches that intersect the range, instead of only fully-contained matches. See [tree-sitter#1130](https://github.com/tree-sitter/tree-sitter/pull/1130).
1118
+ Fixed [an issue](https://github.com/tree-sitter/tree-sitter/pull/1372#issuecomment-924958513) where multiple patterns with the same capture names can result in the first capture being omitted.
@@ -132,7 +139,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
132139
## [0.1.0] - 2020-01-27
133140
Initial release
134141

135-
[Unreleased]: https://github.com/emacs-tree-sitter/elisp-tree-sitter/compare/0.15.2...HEAD
142+
[Unreleased]: https://github.com/emacs-tree-sitter/elisp-tree-sitter/compare/0.16.1...HEAD
143+
[0.16.1]: https://github.com/emacs-tree-sitter/elisp-tree-sitter/compare/0.16.0...0.16.1
144+
[0.16.0]: https://github.com/emacs-tree-sitter/elisp-tree-sitter/compare/0.15.2...0.16.0
136145
[0.15.2]: https://github.com/emacs-tree-sitter/elisp-tree-sitter/compare/0.15.1...0.15.2
137146
[0.15.1]: https://github.com/emacs-tree-sitter/elisp-tree-sitter/compare/0.15.0...0.15.1
138147
[0.15.0]: https://github.com/emacs-tree-sitter/elisp-tree-sitter/compare/0.14.0...0.15.0

core/Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "emacs-tree-sitter"
3-
version = "0.16.0"
3+
version = "0.16.1"
44
authors = ["Tuấn-Anh Nguyễn <[email protected]>"]
55
edition = "2018"
66
publish = false

core/tsc.el

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
;; Jorge Javier Araya Navarro <[email protected]>
77
;; Keywords: languages tools parsers dynamic-modules tree-sitter
88
;; Homepage: https://github.com/emacs-tree-sitter/elisp-tree-sitter
9-
;; Version: 0.16.0
9+
;; Version: 0.16.1
1010
;; Package-Requires: ((emacs "25.1"))
1111
;; SPDX-License-Identifier: MIT
1212

@@ -24,7 +24,7 @@
2424

2525
;; Load the dynamic module at compile time as well, to satisfy the byte compiler.
2626
(eval-and-compile
27-
(defconst tsc--dyn-version "0.16.0"
27+
(defconst tsc--dyn-version "0.16.1"
2828
"Required version of the dynamic module `tsc-dyn'.")
2929
(require 'tsc-dyn-get)
3030
(tsc-dyn-get-ensure tsc--dyn-version))

lisp/tree-sitter.el

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
;; Author: Tuấn-Anh Nguyễn <[email protected]>
66
;; Keywords: languages tools parsers tree-sitter
77
;; Homepage: https://github.com/emacs-tree-sitter/elisp-tree-sitter
8-
;; Version: 0.16.0
9-
;; Package-Requires: ((emacs "25.1") (tsc "0.16.0"))
8+
;; Version: 0.16.1
9+
;; Package-Requires: ((emacs "25.1") (tsc "0.16.1"))
1010
;; SPDX-License-Identifier: MIT
1111

1212
;;; Commentary:

0 commit comments

Comments
 (0)