diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c1d80f1..874f4ed8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ 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] + +## [0.15.2] - 2021-09-12 - Reduced GC pressure by not making the text property `face` a list if there is only one face. - Recast `tree-sitter-node-at-point` as more general `tree-sitter-node-at-pos`, taking optional POS argument. - Made `tree-sitter-node-at-pos` accept special node-type arguments `:named` and `:anonymous`. @@ -122,7 +124,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/emacs-tree-sitter/elisp-tree-sitter/compare/0.15.1...HEAD +[Unreleased]: https://github.com/emacs-tree-sitter/elisp-tree-sitter/compare/0.15.2...HEAD +[0.15.2]: https://github.com/emacs-tree-sitter/elisp-tree-sitter/compare/0.15.1...0.15.2 [0.15.1]: https://github.com/emacs-tree-sitter/elisp-tree-sitter/compare/0.15.0...0.15.1 [0.15.0]: https://github.com/emacs-tree-sitter/elisp-tree-sitter/compare/0.14.0...0.15.0 [0.14.0]: https://github.com/emacs-tree-sitter/elisp-tree-sitter/compare/0.13.1...0.14.0 diff --git a/core/Cargo.lock b/core/Cargo.lock index 200a49fb..772a26cc 100644 --- a/core/Cargo.lock +++ b/core/Cargo.lock @@ -191,7 +191,7 @@ dependencies = [ [[package]] name = "emacs-tree-sitter" -version = "0.15.1" +version = "0.15.2" dependencies = [ "emacs", "libloading", diff --git a/core/Cargo.toml b/core/Cargo.toml index c613621b..c6d13a00 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "emacs-tree-sitter" -version = "0.15.1" +version = "0.15.2" authors = ["Tuấn-Anh Nguyễn "] edition = "2018" publish = false diff --git a/core/tsc.el b/core/tsc.el index 1955d152..dbcf489a 100644 --- a/core/tsc.el +++ b/core/tsc.el @@ -6,7 +6,7 @@ ;; Jorge Javier Araya Navarro ;; Keywords: languages tools parsers dynamic-modules tree-sitter ;; Homepage: https://github.com/emacs-tree-sitter/elisp-tree-sitter -;; Version: 0.15.1 +;; Version: 0.15.2 ;; Package-Requires: ((emacs "25.1")) ;; SPDX-License-Identifier: MIT @@ -24,7 +24,7 @@ ;; Load the dynamic module at compile time as well, to satisfy the byte compiler. (eval-and-compile - (defconst tsc--dyn-version "0.15.1" + (defconst tsc--dyn-version "0.15.2" "Required version of the dynamic module `tsc-dyn'.") (require 'tsc-dyn-get) (tsc-dyn-get-ensure tsc--dyn-version)) diff --git a/lisp/tree-sitter.el b/lisp/tree-sitter.el index 44cf5ae0..6b520737 100644 --- a/lisp/tree-sitter.el +++ b/lisp/tree-sitter.el @@ -5,8 +5,8 @@ ;; Author: Tuấn-Anh Nguyễn ;; Keywords: languages tools parsers tree-sitter ;; Homepage: https://github.com/emacs-tree-sitter/elisp-tree-sitter -;; Version: 0.15.1 -;; Package-Requires: ((emacs "25.1") (tsc "0.15.1")) +;; Version: 0.15.2 +;; Package-Requires: ((emacs "25.1") (tsc "0.15.2")) ;; SPDX-License-Identifier: MIT ;;; Commentary: