From 82bc4256aa308288deaadc35186100899210af1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=E1=BA=A5n-Anh=20Nguy=E1=BB=85n?= Date: Sat, 18 Jul 2020 19:46:10 +0700 Subject: [PATCH] Release 0.9.0 --- CHANGELOG.md | 5 ++++- Cargo.lock | 2 +- Cargo.toml | 2 +- lisp/tree-sitter-core.el | 2 +- lisp/tree-sitter.el | 2 +- 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 62f93f2a..f8e2c64a 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.9.0] - 2020-07-18 - Changed `tree-sitter-hl-add-patterns` to support language-specific patterns, in addition to buffer-local patterns. ## [0.8.3] - 2020-07-12 @@ -58,7 +60,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-sitte/compare/0.8.3...HEAD +[Unreleased]: https://github.com/ubolonton/emacs-tree-sitte/compare/0.9.0...HEAD +[0.9.0]: https://github.com/ubolonton/emacs-tree-sitte/compare/0.8.3...0.9.0 [0.8.3]: https://github.com/ubolonton/emacs-tree-sitte/compare/0.8.2...0.8.3 [0.8.2]: https://github.com/ubolonton/emacs-tree-sitte/compare/0.8.1...0.8.2 [0.8.1]: https://github.com/ubolonton/emacs-tree-sitte/compare/0.8.0...0.8.1 diff --git a/Cargo.lock b/Cargo.lock index 71fabac3..dac49d4e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -188,7 +188,7 @@ dependencies = [ [[package]] name = "emacs-tree-sitter" -version = "0.8.2" +version = "0.9.0" dependencies = [ "emacs 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", "libloading 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 5dfd1ca8..de5ddd7d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "emacs-tree-sitter" -version = "0.8.2" +version = "0.9.0" authors = ["Tuấn-Anh Nguyễn "] edition = "2018" publish = false diff --git a/lisp/tree-sitter-core.el b/lisp/tree-sitter-core.el index 623586c0..0a7fedd5 100644 --- a/lisp/tree-sitter-core.el +++ b/lisp/tree-sitter-core.el @@ -16,7 +16,7 @@ ;; Load the dynamic module at compile time as well, to satisfy the byte compiler. (eval-and-compile - (defconst tree-sitter--dyn-version "0.8.2" + (defconst tree-sitter--dyn-version "0.9.0" "Required version of the dynamic module `tree-sitter-dyn'.") (require 'tree-sitter-dyn-get) (tree-sitter-dyn-get-ensure tree-sitter--dyn-version)) diff --git a/lisp/tree-sitter.el b/lisp/tree-sitter.el index 719bce47..c9d4414e 100644 --- a/lisp/tree-sitter.el +++ b/lisp/tree-sitter.el @@ -5,7 +5,7 @@ ;; Author: Tuấn-Anh Nguyễn ;; Keywords: languages tools parsers dynamic-modules tree-sitter ;; Homepage: https://github.com/ubolonton/emacs-tree-sitter -;; Version: 0.8.3 +;; Version: 0.9.0 ;; Package-Requires: ((emacs "25.1")) ;; License: MIT