Skip to content

Commit

Permalink
feat: Add Jsonnet support (#234)
Browse files Browse the repository at this point in the history
* Release 0.12.38

* feat: Add jsonnet support

* Update CHANGELOG.md

---------

Co-authored-by: Tuấn-Anh Nguyễn <[email protected]>
  • Loading branch information
jcs090218 and ubolonton authored Sep 4, 2023
1 parent 61aeb98 commit 71ac64f
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -352,3 +352,9 @@
branch = master
update = none
ignore = dirty
[submodule "repos/jsonnet"]
path = repos/jsonnet
url = https://github.com/sourcegraph/tree-sitter-jsonnet
branch = main
update = none
ignore = dirty
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog

## Unreleased
- Add `Jsonnet` support

## 0.12.38 - 2023-09-04

## 0.12.37 - 2023-09-04
- Add `Xml` support
Expand Down
1 change: 1 addition & 0 deletions repos/jsonnet
Submodule jsonnet added at d34615
2 changes: 1 addition & 1 deletion tree-sitter-langs-build.el
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ latest commit."
;; ---------------------------------------------------------------------------
;;; Building language grammars.

(defconst tree-sitter-langs--bundle-version "0.12.37"
(defconst tree-sitter-langs--bundle-version "0.12.38"
"Version of the grammar bundle.
This should be bumped whenever a language submodule is updated, which should be
infrequent (grammar-only changes). It is different from the version of
Expand Down
3 changes: 2 additions & 1 deletion tree-sitter-langs.el
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
;; Author: Tuấn-Anh Nguyễn <[email protected]>
;; Keywords: languages tools parsers tree-sitter
;; Homepage: https://github.com/emacs-tree-sitter/tree-sitter-langs
;; Version: 0.12.37
;; Version: 0.12.38
;; Package-Requires: ((emacs "25.1") (tree-sitter "0.15.0"))
;; SPDX-License-Identifier: MIT

Expand Down Expand Up @@ -136,6 +136,7 @@ See `tree-sitter-langs-repos'."
(js3-mode . javascript)
(json-mode . json)
(jsonc-mode . json)
(jsonnet-mode . jsonnet)
(julia-mode . julia)
(kotlin-mode . kotlin)
(latex-mode . latex)
Expand Down

0 comments on commit 71ac64f

Please sign in to comment.