diff --git a/CHANGELOG.md b/CHANGELOG.md index b91dfe2b..70753101 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.0] - 2020-10-13 - Moved the core APIs from `tree-sitter-core.el` into their own package `tsc`, to prepare for [distribution through MELPA](https://github.com/melpa/melpa/pull/7112). Also changed their prefix from `ts-` to `tsc-`, to avoid [conflict with `ts.el`](https://github.com/ubolonton/emacs-tree-sitter/issues/35). ## [0.11.1] - 2020-10-03 @@ -86,7 +88,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.11.1...HEAD +[Unreleased]: https://github.com/ubolonton/emacs-tree-sitter/compare/0.12.0...HEAD +[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 [0.10.0]: https://github.com/ubolonton/emacs-tree-sitter/compare/0.9.2...0.10.0 diff --git a/Cargo.lock b/Cargo.lock index 1377b31e..25095030 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -188,7 +188,7 @@ dependencies = [ [[package]] name = "emacs-tree-sitter" -version = "0.11.0" +version = "0.12.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/core/Cargo.toml b/core/Cargo.toml index 18729de8..f1e1e390 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "emacs-tree-sitter" -version = "0.11.0" +version = "0.12.0" authors = ["Tuấn-Anh Nguyễn "] edition = "2018" publish = false diff --git a/core/tsc.el b/core/tsc.el index 1a9589ab..5a16c96a 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.11.1 +;; Version: 0.12.0 ;; Package-Requires: ((emacs "25.1")) ;; License: 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.11.0" + (defconst tsc--dyn-version "0.12.0" "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 9e0cf8dc..d6ec271c 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.11.1 -;; Package-Requires: ((emacs "25.1") (tsc "0.11.1")) +;; Version: 0.12.0 +;; Package-Requires: ((emacs "25.1") (tsc "0.12.0")) ;; License: MIT ;;; Commentary: