From 95d9776bdd14e0b50655f014caef41b51dc015d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=E1=BA=A5n-Anh=20Nguy=E1=BB=85n?= Date: Sat, 1 Aug 2020 20:09:52 +0700 Subject: [PATCH] Release 0.10.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 ade42f0a..38ce3db3 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.10.0] - 2020-08-01 - Used keywords instead of strings for field names. + Replaced `ts-field-name-for-id`, `ts-field-id-for-name` with `ts-lang-field`, `ts-lang-field-id`. + Replaced `ts-current-field-name` with `ts-current-field`. @@ -77,7 +79,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.9.2...HEAD +[Unreleased]: https://github.com/ubolonton/emacs-tree-sitte/compare/0.10.0...HEAD +[0.10.0]: https://github.com/ubolonton/emacs-tree-sitte/compare/0.9.2...0.10.0 [0.9.2]: https://github.com/ubolonton/emacs-tree-sitte/compare/0.9.1...0.9.2 [0.9.1]: https://github.com/ubolonton/emacs-tree-sitte/compare/0.9.0...0.9.1 [0.9.0]: https://github.com/ubolonton/emacs-tree-sitte/compare/0.8.3...0.9.0 diff --git a/Cargo.lock b/Cargo.lock index 4b08e2d0..1f07835a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -188,7 +188,7 @@ dependencies = [ [[package]] name = "emacs-tree-sitter" -version = "0.9.2" +version = "0.10.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 354d70a0..f6a017f1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "emacs-tree-sitter" -version = "0.9.2" +version = "0.10.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 e9bb8fac..94af947d 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.9.2" + (defconst tree-sitter--dyn-version "0.10.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 439feff8..e823b050 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.9.2 +;; Version: 0.10.0 ;; Package-Requires: ((emacs "25.1")) ;; License: MIT