Skip to content

Commit 771239b

Browse files
committed
Release 0.17.0
1 parent 371e91e commit 771239b

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55

66
## [Unreleased]
7+
8+
## 0.17.0 - 2022-01-29
79
- Added customization option `tsc-dyn-get-from`, which is a list of sources to get the dynamic module `tsc-dyn` from. Its default value is `(:github :compilation)`.
810
- Made `tree-sitter-hl`'s region-fontification function fall back to the underlying non-tree-sitter function when called outside of `tree-sitter-hl-mode`. This fixes an issue where `jupyter-repl-mode`'s [input cells are not highlighted](https://github.com/nnicandro/emacs-jupyter/issues/363).
911
- Updated `tsc-dyn-get` to download platform-specific binaries (mainly for Apple Silicon).

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.1"
3+
version = "0.17.0"
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.1
9+
;; Version: 0.17.0
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.1"
27+
(defconst tsc--dyn-version "0.17.0"
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.1
9-
;; Package-Requires: ((emacs "25.1") (tsc "0.16.1"))
8+
;; Version: 0.17.0
9+
;; Package-Requires: ((emacs "25.1") (tsc "0.17.0"))
1010
;; SPDX-License-Identifier: MIT
1111

1212
;;; Commentary:

0 commit comments

Comments
 (0)