Skip to content

Commit afd0110

Browse files
committed
Release 0.12.0
1 parent c79fdaa commit afd0110

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55

66
## [Unreleased]
7+
8+
## [0.12.0] - 2020-10-13
79
- 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).
810

911
## [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/).
8688
## [0.1.0] - 2020-01-27
8789
Initial release
8890

89-
[Unreleased]: https://github.com/ubolonton/emacs-tree-sitter/compare/0.11.1...HEAD
91+
[Unreleased]: https://github.com/ubolonton/emacs-tree-sitter/compare/0.12.0...HEAD
92+
[0.12.0]: https://github.com/ubolonton/emacs-tree-sitter/compare/0.11.1...0.12.0
9093
[0.11.1]: https://github.com/ubolonton/emacs-tree-sitter/compare/0.11.0...0.11.1
9194
[0.11.0]: https://github.com/ubolonton/emacs-tree-sitter/compare/0.10.0...0.11.0
9295
[0.10.0]: https://github.com/ubolonton/emacs-tree-sitter/compare/0.9.2...0.10.0

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "emacs-tree-sitter"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
authors = ["Tuấn-Anh Nguyễn <[email protected]>"]
55
edition = "2018"
66
publish = false

core/tsc.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
;; Jorge Javier Araya Navarro <[email protected]>
77
;; Keywords: languages tools parsers dynamic-modules tree-sitter
88
;; Homepage: https://github.com/ubolonton/emacs-tree-sitter
9-
;; Version: 0.11.1
9+
;; Version: 0.12.0
1010
;; Package-Requires: ((emacs "25.1"))
1111
;; License: MIT
1212

@@ -24,7 +24,7 @@
2424

2525
;; Load the dynamic module at compile time as well, to satisfy the byte compiler.
2626
(eval-and-compile
27-
(defconst tsc--dyn-version "0.11.0"
27+
(defconst tsc--dyn-version "0.12.0"
2828
"Required version of the dynamic module `tsc-dyn'.")
2929
(require 'tsc-dyn-get)
3030
(tsc-dyn-get-ensure tsc--dyn-version))

lisp/tree-sitter.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
;; Author: Tuấn-Anh Nguyễn <[email protected]>
66
;; Keywords: languages tools parsers tree-sitter
77
;; Homepage: https://github.com/ubolonton/emacs-tree-sitter
8-
;; Version: 0.11.1
9-
;; Package-Requires: ((emacs "25.1") (tsc "0.11.1"))
8+
;; Version: 0.12.0
9+
;; Package-Requires: ((emacs "25.1") (tsc "0.12.0"))
1010
;; License: MIT
1111

1212
;;; Commentary:

0 commit comments

Comments
 (0)