Skip to content

Commit

Permalink
Release 0.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ubolonton committed Nov 5, 2020
1 parent 05dbaad commit 68757fb
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down Expand Up @@ -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
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 core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "emacs-tree-sitter"
version = "0.12.0"
version = "0.12.1"
authors = ["Tuấn-Anh Nguyễn <[email protected]>"]
edition = "2018"
publish = false
Expand Down
4 changes: 2 additions & 2 deletions core/tsc.el
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
;; Jorge Javier Araya Navarro <[email protected]>
;; 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

Expand All @@ -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))
Expand Down
4 changes: 2 additions & 2 deletions lisp/tree-sitter.el
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
;; Author: Tuấn-Anh Nguyễn <[email protected]>
;; 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:
Expand Down

0 comments on commit 68757fb

Please sign in to comment.