Skip to content

Commit 4ac734c

Browse files
authored
Release v7.29.0 (#6753)
* Update all grammars * Update cached licenses * Swift now uses Treesitter * v7.29.0
1 parent 4a807b4 commit 4ac734c

File tree

133 files changed

+246
-185
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

133 files changed

+246
-185
lines changed

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ end
5959
# The error count will need to be adjusted here until such time as all grammars are 100% error free.
6060
desc "Check that compiling the grammars doesn't introduce any new unexpected errors"
6161
task :check_grammars do
62-
expected_error_count = 36 # This count should only ever go down. If it goes up, there's a new issue that needs to be addressed before updating the grammar.
62+
expected_error_count = 63 # This count should only ever go down. If it goes up, there's a new issue that needs to be addressed before updating the grammar.
6363
rm_rf "linguist-grammars"
6464
output, status = Open3.capture2e("script/grammar-compiler", "compile", "-o", "linguist-grammars")
6565
errors_found = output[/The grammar library contains ([0-9]+) errors/, 1].to_i

grammars.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,12 +414,13 @@ vendor/grammars/gradle.tmbundle:
414414
- source.groovy.gradle
415415
vendor/grammars/graphiql:
416416
- inline.graphql
417+
- inline.graphql.markdown.codeblock
417418
- inline.graphql.php
418419
- inline.graphql.python
420+
- inline.graphql.rb
419421
- inline.graphql.re
420422
- inline.graphql.res
421423
- inline.graphql.scala
422-
- markdown.graphql.codeblock
423424
- source.graphql
424425
vendor/grammars/graphviz.tmbundle:
425426
- source.dot
@@ -1090,6 +1091,7 @@ vendor/grammars/vhdl:
10901091
vendor/grammars/vsc-ember-syntax:
10911092
- inline.hbs
10921093
- inline.template
1094+
- markdown.glimmer.codeblock
10931095
- source.gjs
10941096
- source.gts
10951097
- text.html.ember-handlebars

lib/linguist/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.28.0
1+
7.29.0

script/list-grammars

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ TREE_SITTER_GRAMMARS = {
2424
"Regular Expression" => "https://github.com/tree-sitter/tree-sitter-regex",
2525
"Ruby" => "https://github.com/tree-sitter/tree-sitter-ruby",
2626
"Rust" => "https://github.com/tree-sitter/tree-sitter-rust",
27+
"Swift" => "https://github.com/alex-pinkus/tree-sitter-swift",
2728
"TLA" => "https://github.com/tlaplus-community/tree-sitter-tlaplus",
2829
"TypeScript" => "https://github.com/tree-sitter/tree-sitter-typescript"
2930
}

vendor/CodeMirror

vendor/README.md

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)