From 68757fb6f0ab7f2661b9abc8fda876453f27e3cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=E1=BA=A5n-Anh=20Nguy=E1=BB=85n?= Date: Wed, 4 Nov 2020 18:49:41 +0700 Subject: [PATCH] Release 0.12.1 --- CHANGELOG.md | 5 ++++- Cargo.lock | 2 +- core/Cargo.toml | 2 +- core/tsc.el | 4 ++-- lisp/tree-sitter.el | 4 ++-- 5 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d98e115f..31f09b76 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.12.1] - 2020-11-04 - Fixed incorrect parsing when after-change's start position is not the same as before-change's start position. For example, this happens when calling `upcase-region` on a region whose first character is already upcased. - Upgraded `emacs` crate to [0.14.1](https://github.com/ubolonton/emacs-module-rs/releases/tag/0.14.1) to fix the [compilation error on Rust 1.47](https://github.com/ubolonton/emacs-tree-sitter/issues/62). - Upgraded `tree-sitter` crate to 0.17.1 to [fix](https://github.com/tree-sitter/tree-sitter/issues/790) [handling of repeated field names in queries](https://github.com/ubolonton/emacs-tree-sitter/issues/67). @@ -91,7 +93,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.12.0...HEAD +[Unreleased]: https://github.com/ubolonton/emacs-tree-sitter/compare/0.12.1...HEAD +[0.12.1]: https://github.com/ubolonton/emacs-tree-sitter/compare/0.12.0...0.12.1 [0.12.0]: https://github.com/ubolonton/emacs-tree-sitter/compare/0.11.1...0.12.0 [0.11.1]: https://github.com/ubolonton/emacs-tree-sitter/compare/0.11.0...0.11.1 [0.11.0]: https://github.com/ubolonton/emacs-tree-sitter/compare/0.10.0...0.11.0 diff --git a/Cargo.lock b/Cargo.lock index 1a525e86..bbe18608 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -207,7 +207,7 @@ dependencies = [ [[package]] name = "emacs-tree-sitter" -version = "0.12.0" +version = "0.12.1" dependencies = [ "emacs", "libloading 0.6.2", diff --git a/core/Cargo.toml b/core/Cargo.toml index 10f41f3a..3ecb78a0 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "emacs-tree-sitter" -version = "0.12.0" +version = "0.12.1" authors = ["Tuấn-Anh Nguyễn "] edition = "2018" publish = false diff --git a/core/tsc.el b/core/tsc.el index 64d84871..3a4cd01c 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/ubolonton/emacs-tree-sitter -;; Version: 0.12.0 +;; Version: 0.12.1 ;; 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.12.0" + (defconst tsc--dyn-version "0.12.1" "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 ef44690b..01e08c93 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/ubolonton/emacs-tree-sitter -;; Version: 0.12.0 -;; Package-Requires: ((emacs "25.1") (tsc "0.12.0")) +;; Version: 0.12.1 +;; Package-Requires: ((emacs "25.1") (tsc "0.12.1")) ;; SPDX-License-Identifier: MIT ;;; Commentary: