From 40992ba7f86889f80dfed3ba95e11e1082200bad Mon Sep 17 00:00:00 2001 From: Colin Seymour Date: Thu, 19 Mar 2020 15:09:06 +0000 Subject: [PATCH] Release v7.9.0 (#4816) * Prepare 7.9.0 release * Put back the v7.8.0 version We need this to ensure the versioning used during testing on GitHub.com doesn't cause caching problems in future * fix errors on non-UTF-8 encodings Some files failed with "invalid byte sequence in UTF-8 (ArgumentError)" when BlobHelper#lines was called. Some problematic files include UTF-16LE samples such as test/fixtures/Data/utf16le. Errors were not present when computing stats from git repositories, since git blobs are always read as ASCII-8BIT and that was working correctly. However, when using FileBlob, encoding could be ASCII-8BIT, UTF-8 or other, depending on the runtime value of Encoding.external_encoding. Tests were not catching the error since they were forcing Encoding.external_encoding to be ASCII-8BIT (introduced in #1211). So the error would only be seen in wild usage (see issue #353). This commit forces ASCII-8BIT on File.read calls. The error is still present if using memory blobs with other encodings. * Decrease expected error count * Set version to 7.9.0 Co-authored-by: Rick Winfrey Co-authored-by: Santiago M. Mola --- Rakefile | 2 +- grammars.yml | 1 + lib/linguist/VERSION | 2 +- vendor/CodeMirror | 2 +- vendor/grammars/AutoHotkey | 2 +- vendor/grammars/MATLAB-Language-grammar | 2 +- vendor/grammars/MagicPython | 2 +- vendor/grammars/abap.tmbundle | 2 +- vendor/grammars/atom-language-innosetup | 2 +- vendor/grammars/atom-language-julia | 2 +- vendor/grammars/atom-language-nextflow | 2 +- vendor/grammars/chapel-tmbundle | 2 +- vendor/grammars/d.tmbundle | 2 +- vendor/grammars/elixir-tmbundle | 2 +- vendor/grammars/lang-4d | 2 +- vendor/grammars/language-csound | 2 +- vendor/grammars/language-eml | 2 +- vendor/grammars/language-haskell | 2 +- vendor/grammars/language-msl | 2 +- vendor/grammars/language-renpy | 2 +- vendor/grammars/language-roff | 2 +- vendor/grammars/language-shellscript | 2 +- vendor/grammars/r.tmbundle | 2 +- vendor/grammars/vscode-codeql | 2 +- vendor/grammars/vscode-gcode-syntax | 2 +- vendor/grammars/vscode-hack | 2 +- vendor/grammars/vscode-lean | 2 +- vendor/grammars/vscode-prisma | 2 +- vendor/grammars/vscode-vlang | 2 +- vendor/grammars/zephir-sublime | 2 +- vendor/licenses/grammar/AutoHotkey.txt | 2 +- vendor/licenses/grammar/MATLAB-Language-grammar.txt | 2 +- vendor/licenses/grammar/MagicPython.txt | 2 +- vendor/licenses/grammar/abap.tmbundle.txt | 2 +- vendor/licenses/grammar/atom-language-innosetup.txt | 2 +- vendor/licenses/grammar/atom-language-julia.txt | 2 +- vendor/licenses/grammar/atom-language-nextflow.txt | 2 +- vendor/licenses/grammar/chapel-tmbundle.txt | 2 +- vendor/licenses/grammar/d.tmbundle.txt | 2 +- vendor/licenses/grammar/elixir-tmbundle.txt | 2 +- vendor/licenses/grammar/lang-4d.txt | 2 +- vendor/licenses/grammar/language-csound.txt | 2 +- vendor/licenses/grammar/language-eml.txt | 2 +- vendor/licenses/grammar/language-haskell.txt | 2 +- vendor/licenses/grammar/language-msl.txt | 3 ++- vendor/licenses/grammar/language-renpy.txt | 2 +- vendor/licenses/grammar/language-roff.txt | 4 ++-- vendor/licenses/grammar/language-shellscript.txt | 2 +- vendor/licenses/grammar/r.tmbundle.txt | 2 +- vendor/licenses/grammar/vscode-codeql.txt | 2 +- vendor/licenses/grammar/vscode-gcode-syntax.txt | 2 +- vendor/licenses/grammar/vscode-hack.txt | 2 +- vendor/licenses/grammar/vscode-lean.txt | 2 +- vendor/licenses/grammar/vscode-prisma.txt | 2 +- vendor/licenses/grammar/vscode-vlang.txt | 2 +- vendor/licenses/grammar/zephir-sublime.txt | 4 ++-- 56 files changed, 59 insertions(+), 57 deletions(-) diff --git a/Rakefile b/Rakefile index 543cb48b92..bc4768663a 100644 --- a/Rakefile +++ b/Rakefile @@ -58,7 +58,7 @@ end # The error count will need to be adjusted here until such time as all grammars are 100% error free. desc "Check that compiling the grammars doesn't introduce any new unexpected errors" task :check_grammars do - expected_error_count = 35 # 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. + expected_error_count = 42 # 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. rm_rf "linguist-grammars" output, status = Open3.capture2e("script/grammar-compiler", "compile", "-o", "linguist-grammars") errors_found = output[/the grammar library contains ([0-9]+) errors/, 1].to_i diff --git a/grammars.yml b/grammars.yml index a2bb5b4990..2f7d2e6484 100755 --- a/grammars.yml +++ b/grammars.yml @@ -851,6 +851,7 @@ vendor/grammars/vscode-hack: - source.hack vendor/grammars/vscode-lean: - source.lean +- source.lean.markdown vendor/grammars/vscode-opa: - source.rego vendor/grammars/vscode-plantuml: diff --git a/lib/linguist/VERSION b/lib/linguist/VERSION index 09a6d30847..4bc5d61816 100644 --- a/lib/linguist/VERSION +++ b/lib/linguist/VERSION @@ -1 +1 @@ -7.8.0 +7.9.0 diff --git a/vendor/CodeMirror b/vendor/CodeMirror index 96d8d51298..856c3a25da 160000 --- a/vendor/CodeMirror +++ b/vendor/CodeMirror @@ -1 +1 @@ -Subproject commit 96d8d5129859b9aafdffd9888ffe39c893a4c1c3 +Subproject commit 856c3a25dab35a90eff930035c14f908fe57fa58 diff --git a/vendor/grammars/AutoHotkey b/vendor/grammars/AutoHotkey index 90d3189125..279f16cef0 160000 --- a/vendor/grammars/AutoHotkey +++ b/vendor/grammars/AutoHotkey @@ -1 +1 @@ -Subproject commit 90d3189125d67acbaa186eec1845ce959215fcfd +Subproject commit 279f16cef09be8d47dc33dc763f4a58079b4a81d diff --git a/vendor/grammars/MATLAB-Language-grammar b/vendor/grammars/MATLAB-Language-grammar index e2c7b3a78e..40d9a0cd3b 160000 --- a/vendor/grammars/MATLAB-Language-grammar +++ b/vendor/grammars/MATLAB-Language-grammar @@ -1 +1 @@ -Subproject commit e2c7b3a78e75410121f1a635b89c30cf441b58a3 +Subproject commit 40d9a0cd3b628f80cdcf948bbe1747a527ed5dd5 diff --git a/vendor/grammars/MagicPython b/vendor/grammars/MagicPython index 9d40c7165c..c9b3409deb 160000 --- a/vendor/grammars/MagicPython +++ b/vendor/grammars/MagicPython @@ -1 +1 @@ -Subproject commit 9d40c7165cdd4d72129dafa29dced3e17c5b83bf +Subproject commit c9b3409deb69acec31bbf7913830e93a046b30cc diff --git a/vendor/grammars/abap.tmbundle b/vendor/grammars/abap.tmbundle index 4603312e0b..4df7e3cd86 160000 --- a/vendor/grammars/abap.tmbundle +++ b/vendor/grammars/abap.tmbundle @@ -1 +1 @@ -Subproject commit 4603312e0b33e0c171651d7149c18056f9bfa7a7 +Subproject commit 4df7e3cd8663480f357dd73b8e4d11b4781efce4 diff --git a/vendor/grammars/atom-language-innosetup b/vendor/grammars/atom-language-innosetup index 7e0d2b969b..f05bc0d839 160000 --- a/vendor/grammars/atom-language-innosetup +++ b/vendor/grammars/atom-language-innosetup @@ -1 +1 @@ -Subproject commit 7e0d2b969b17111843bc97cb74a535f7f57768d0 +Subproject commit f05bc0d83956b38c5c19630c5e962e9a231bdadb diff --git a/vendor/grammars/atom-language-julia b/vendor/grammars/atom-language-julia index 139f99b2e2..f71b9da514 160000 --- a/vendor/grammars/atom-language-julia +++ b/vendor/grammars/atom-language-julia @@ -1 +1 @@ -Subproject commit 139f99b2e2232e56214620a407c6559cdf220b26 +Subproject commit f71b9da514bc5a19fc1b9e51e36a403419307e58 diff --git a/vendor/grammars/atom-language-nextflow b/vendor/grammars/atom-language-nextflow index cf1ea6d773..40387695d7 160000 --- a/vendor/grammars/atom-language-nextflow +++ b/vendor/grammars/atom-language-nextflow @@ -1 +1 @@ -Subproject commit cf1ea6d773477a6a4cb8d80b4846deab611d9ab0 +Subproject commit 40387695d768dc7c9ab7b8594cd2c925fd254e47 diff --git a/vendor/grammars/chapel-tmbundle b/vendor/grammars/chapel-tmbundle index 4d408dfbb5..822363c7e0 160000 --- a/vendor/grammars/chapel-tmbundle +++ b/vendor/grammars/chapel-tmbundle @@ -1 +1 @@ -Subproject commit 4d408dfbb5d07d333a93ddadf4019cc80d4fb236 +Subproject commit 822363c7e063444df0591ab559bf39cad2ebd44e diff --git a/vendor/grammars/d.tmbundle b/vendor/grammars/d.tmbundle index 266c4d49d0..6226265306 160000 --- a/vendor/grammars/d.tmbundle +++ b/vendor/grammars/d.tmbundle @@ -1 +1 @@ -Subproject commit 266c4d49d05bc9328056ed3558536c2ac6f8638a +Subproject commit 622626530610566617838326458ee327b9d9df95 diff --git a/vendor/grammars/elixir-tmbundle b/vendor/grammars/elixir-tmbundle index 69fdc72a1c..f7806bc7e0 160000 --- a/vendor/grammars/elixir-tmbundle +++ b/vendor/grammars/elixir-tmbundle @@ -1 +1 @@ -Subproject commit 69fdc72a1c96986dc4227ef733f15741faf0180c +Subproject commit f7806bc7e0b0d6c076984e71c1572a6087a35bf2 diff --git a/vendor/grammars/lang-4d b/vendor/grammars/lang-4d index d2b0554044..cae7c50f2c 160000 --- a/vendor/grammars/lang-4d +++ b/vendor/grammars/lang-4d @@ -1 +1 @@ -Subproject commit d2b055404473f709db3c6175a41f31a6bf15a8f0 +Subproject commit cae7c50f2ca3ea9f2a5508542d567a506e42c850 diff --git a/vendor/grammars/language-csound b/vendor/grammars/language-csound index 8648c33d05..fce4a6f586 160000 --- a/vendor/grammars/language-csound +++ b/vendor/grammars/language-csound @@ -1 +1 @@ -Subproject commit 8648c33d05a1c6f114c874a4e8567e0a423c0b36 +Subproject commit fce4a6f58623c70c9155f57678c46357b528465c diff --git a/vendor/grammars/language-eml b/vendor/grammars/language-eml index ffb4afaf1a..9503914ebb 160000 --- a/vendor/grammars/language-eml +++ b/vendor/grammars/language-eml @@ -1 +1 @@ -Subproject commit ffb4afaf1a34fd60522c1e53dc92aeefcb150897 +Subproject commit 9503914ebbca0c66925bdc6c1a9e68e4f40af5c1 diff --git a/vendor/grammars/language-haskell b/vendor/grammars/language-haskell index 3c71c9eda5..a1adeb73d1 160000 --- a/vendor/grammars/language-haskell +++ b/vendor/grammars/language-haskell @@ -1 +1 @@ -Subproject commit 3c71c9eda5ab9ea094fd652df6688f9858073cb7 +Subproject commit a1adeb73d19206ff0a3505fc2752fb0cd13b4ac5 diff --git a/vendor/grammars/language-msl b/vendor/grammars/language-msl index 8418ec2b4a..955e537fcb 160000 --- a/vendor/grammars/language-msl +++ b/vendor/grammars/language-msl @@ -1 +1 @@ -Subproject commit 8418ec2b4afe24660f05f0ddf9115d0beb3beb85 +Subproject commit 955e537fcbb14ef308a706eee72085a32e28d46a diff --git a/vendor/grammars/language-renpy b/vendor/grammars/language-renpy index 8c6682b4fc..b26c043967 160000 --- a/vendor/grammars/language-renpy +++ b/vendor/grammars/language-renpy @@ -1 +1 @@ -Subproject commit 8c6682b4fceb05f91bd18b79a4e9133da61299b9 +Subproject commit b26c043967c15789da52156262620841fa248144 diff --git a/vendor/grammars/language-roff b/vendor/grammars/language-roff index 755ec54822..f0b7e16fe3 160000 --- a/vendor/grammars/language-roff +++ b/vendor/grammars/language-roff @@ -1 +1 @@ -Subproject commit 755ec54822442266090610857363b54354b2a617 +Subproject commit f0b7e16fe304ab886c667fc09a34f8704034f1b5 diff --git a/vendor/grammars/language-shellscript b/vendor/grammars/language-shellscript index 0bba7949ad..b4e945380e 160000 --- a/vendor/grammars/language-shellscript +++ b/vendor/grammars/language-shellscript @@ -1 +1 @@ -Subproject commit 0bba7949ad6beaece790c121344407c012b5346e +Subproject commit b4e945380ecd130089e9514fe5adca7152c3b253 diff --git a/vendor/grammars/r.tmbundle b/vendor/grammars/r.tmbundle index d005a0f105..6a15532161 160000 --- a/vendor/grammars/r.tmbundle +++ b/vendor/grammars/r.tmbundle @@ -1 +1 @@ -Subproject commit d005a0f1055020757b797e4959d1b43ece3708aa +Subproject commit 6a15532161ab833f2785a7fca0d3de48f1ad87bf diff --git a/vendor/grammars/vscode-codeql b/vendor/grammars/vscode-codeql index 222cafb73c..059a75c5a4 160000 --- a/vendor/grammars/vscode-codeql +++ b/vendor/grammars/vscode-codeql @@ -1 +1 @@ -Subproject commit 222cafb73c85336b242b1171f15df31127208f77 +Subproject commit 059a75c5a460ac6a061b88ca84c18b92ceef755d diff --git a/vendor/grammars/vscode-gcode-syntax b/vendor/grammars/vscode-gcode-syntax index 556a08cf34..aff7d787d5 160000 --- a/vendor/grammars/vscode-gcode-syntax +++ b/vendor/grammars/vscode-gcode-syntax @@ -1 +1 @@ -Subproject commit 556a08cf349d3b57292cbbc1925998d442a9ee38 +Subproject commit aff7d787d5c0de4729038276e8fb8635929683ea diff --git a/vendor/grammars/vscode-hack b/vendor/grammars/vscode-hack index 72beaf978f..552d910a74 160000 --- a/vendor/grammars/vscode-hack +++ b/vendor/grammars/vscode-hack @@ -1 +1 @@ -Subproject commit 72beaf978fa89d1a90a1cc60c12d0b1f6ca77413 +Subproject commit 552d910a74c1ec237ddc3b39355794f4fbb5a952 diff --git a/vendor/grammars/vscode-lean b/vendor/grammars/vscode-lean index 8019b3fb44..e43beaa72c 160000 --- a/vendor/grammars/vscode-lean +++ b/vendor/grammars/vscode-lean @@ -1 +1 @@ -Subproject commit 8019b3fb444072f38788123cd9cdf9dade6626df +Subproject commit e43beaa72c428cdcc531078bcb98f444f5270900 diff --git a/vendor/grammars/vscode-prisma b/vendor/grammars/vscode-prisma index 22b1c9ae85..9b44572322 160000 --- a/vendor/grammars/vscode-prisma +++ b/vendor/grammars/vscode-prisma @@ -1 +1 @@ -Subproject commit 22b1c9ae85630335e45624ca182dcf9510ee0236 +Subproject commit 9b44572322026383c0ae44ada9fd628d184be0da diff --git a/vendor/grammars/vscode-vlang b/vendor/grammars/vscode-vlang index 8fd5e7ec68..770d3e32d0 160000 --- a/vendor/grammars/vscode-vlang +++ b/vendor/grammars/vscode-vlang @@ -1 +1 @@ -Subproject commit 8fd5e7ec6867d99c04b1662503f65e512f02aa67 +Subproject commit 770d3e32d03b59f93f66be58af9dd7f3560dad6a diff --git a/vendor/grammars/zephir-sublime b/vendor/grammars/zephir-sublime index 23e2db7391..86d8d61843 160000 --- a/vendor/grammars/zephir-sublime +++ b/vendor/grammars/zephir-sublime @@ -1 +1 @@ -Subproject commit 23e2db73918e54a5ff6f0087bb1bc094ef1d767a +Subproject commit 86d8d61843f2ca0b6ef9dfd3b606fab33cc49e67 diff --git a/vendor/licenses/grammar/AutoHotkey.txt b/vendor/licenses/grammar/AutoHotkey.txt index 654efdd3a7..47c6f63318 100644 --- a/vendor/licenses/grammar/AutoHotkey.txt +++ b/vendor/licenses/grammar/AutoHotkey.txt @@ -1,7 +1,7 @@ --- type: grammar name: AutoHotkey -version: 90d3189125d67acbaa186eec1845ce959215fcfd +version: 18a875235d7d6427cff668babea27c061d3d7959 license: unlicense --- This is free and unencumbered software released into the public domain. diff --git a/vendor/licenses/grammar/MATLAB-Language-grammar.txt b/vendor/licenses/grammar/MATLAB-Language-grammar.txt index 20893deb39..af0d99a26b 100644 --- a/vendor/licenses/grammar/MATLAB-Language-grammar.txt +++ b/vendor/licenses/grammar/MATLAB-Language-grammar.txt @@ -1,7 +1,7 @@ --- type: grammar name: MATLAB-Language-grammar -version: 90dad4575a164f05161416864905eac4af1f8072 +version: 69dbf20c1eb19efd629c0438a2a493e60617e8de license: bsd-2-clause --- Copyright 2018 The MathWorks, Inc. diff --git a/vendor/licenses/grammar/MagicPython.txt b/vendor/licenses/grammar/MagicPython.txt index 5cb8fb27a9..9ca813fea4 100644 --- a/vendor/licenses/grammar/MagicPython.txt +++ b/vendor/licenses/grammar/MagicPython.txt @@ -1,7 +1,7 @@ --- type: grammar name: MagicPython -version: 9d40c7165cdd4d72129dafa29dced3e17c5b83bf +version: c9b3409deb69acec31bbf7913830e93a046b30cc license: mit --- The MIT License diff --git a/vendor/licenses/grammar/abap.tmbundle.txt b/vendor/licenses/grammar/abap.tmbundle.txt index d8eb62a144..ad4ea8e828 100644 --- a/vendor/licenses/grammar/abap.tmbundle.txt +++ b/vendor/licenses/grammar/abap.tmbundle.txt @@ -1,7 +1,7 @@ --- type: grammar name: abap.tmbundle -version: 4603312e0b33e0c171651d7149c18056f9bfa7a7 +version: 4df7e3cd8663480f357dd73b8e4d11b4781efce4 license: permissive --- If not otherwise specified (see below), files in this repository fall under the following license: diff --git a/vendor/licenses/grammar/atom-language-innosetup.txt b/vendor/licenses/grammar/atom-language-innosetup.txt index 88b7f62d62..0d375ce759 100644 --- a/vendor/licenses/grammar/atom-language-innosetup.txt +++ b/vendor/licenses/grammar/atom-language-innosetup.txt @@ -1,7 +1,7 @@ --- type: grammar name: atom-language-innosetup -version: 7e0d2b969b17111843bc97cb74a535f7f57768d0 +version: f05bc0d83956b38c5c19630c5e962e9a231bdadb license: mit --- The MIT License (MIT) diff --git a/vendor/licenses/grammar/atom-language-julia.txt b/vendor/licenses/grammar/atom-language-julia.txt index 593ea7dc07..98d18e067a 100644 --- a/vendor/licenses/grammar/atom-language-julia.txt +++ b/vendor/licenses/grammar/atom-language-julia.txt @@ -1,7 +1,7 @@ --- type: grammar name: atom-language-julia -version: 73f55e2be936136a20696278d213a8c37f87406c +version: f71b9da514bc5a19fc1b9e51e36a403419307e58 license: mit --- The atom-language-julia package is licensed under the MIT "Expat" License: diff --git a/vendor/licenses/grammar/atom-language-nextflow.txt b/vendor/licenses/grammar/atom-language-nextflow.txt index 5cb36ec209..ff9bb92ca1 100644 --- a/vendor/licenses/grammar/atom-language-nextflow.txt +++ b/vendor/licenses/grammar/atom-language-nextflow.txt @@ -1,7 +1,7 @@ --- type: grammar name: atom-language-nextflow -version: cf1ea6d773477a6a4cb8d80b4846deab611d9ab0 +version: 40387695d768dc7c9ab7b8594cd2c925fd254e47 license: mit --- Copyright (c) 2018 Paolo Di Tommaso diff --git a/vendor/licenses/grammar/chapel-tmbundle.txt b/vendor/licenses/grammar/chapel-tmbundle.txt index 1033b229ea..5564666ac0 100644 --- a/vendor/licenses/grammar/chapel-tmbundle.txt +++ b/vendor/licenses/grammar/chapel-tmbundle.txt @@ -1,7 +1,7 @@ --- type: grammar name: chapel-tmbundle -version: aff241981b8395cad16eef71974161d5d9d34f67 +version: 7337ec9d9069b4e8deeeb62f6d56969a1b65dbc3 license: apache-2.0 --- Apache License diff --git a/vendor/licenses/grammar/d.tmbundle.txt b/vendor/licenses/grammar/d.tmbundle.txt index c114902207..dc28a925ca 100644 --- a/vendor/licenses/grammar/d.tmbundle.txt +++ b/vendor/licenses/grammar/d.tmbundle.txt @@ -1,7 +1,7 @@ --- type: grammar name: d.tmbundle -version: 266c4d49d05bc9328056ed3558536c2ac6f8638a +version: 622626530610566617838326458ee327b9d9df95 license: permissive --- If not otherwise specified (see below), files in this repository fall under the following license: diff --git a/vendor/licenses/grammar/elixir-tmbundle.txt b/vendor/licenses/grammar/elixir-tmbundle.txt index c8ad06e243..7eec1e6f61 100644 --- a/vendor/licenses/grammar/elixir-tmbundle.txt +++ b/vendor/licenses/grammar/elixir-tmbundle.txt @@ -1,7 +1,7 @@ --- type: grammar name: elixir-tmbundle -version: 69fdc72a1c96986dc4227ef733f15741faf0180c +version: f7806bc7e0b0d6c076984e71c1572a6087a35bf2 license: apache-2.0 --- Copyright 2012 Plataformatec. diff --git a/vendor/licenses/grammar/lang-4d.txt b/vendor/licenses/grammar/lang-4d.txt index 40aeb9554c..ebff2a005d 100644 --- a/vendor/licenses/grammar/lang-4d.txt +++ b/vendor/licenses/grammar/lang-4d.txt @@ -1,7 +1,7 @@ --- type: grammar name: lang-4d -version: d2b055404473f709db3c6175a41f31a6bf15a8f0 +version: cae7c50f2ca3ea9f2a5508542d567a506e42c850 license: mit --- MIT License diff --git a/vendor/licenses/grammar/language-csound.txt b/vendor/licenses/grammar/language-csound.txt index 57e9912cf7..7a65091b09 100644 --- a/vendor/licenses/grammar/language-csound.txt +++ b/vendor/licenses/grammar/language-csound.txt @@ -1,7 +1,7 @@ --- type: grammar name: language-csound -version: 8648c33d05a1c6f114c874a4e8567e0a423c0b36 +version: fce4a6f58623c70c9155f57678c46357b528465c license: mit --- Copyright © 2015–2018 Nathan Whetsell diff --git a/vendor/licenses/grammar/language-eml.txt b/vendor/licenses/grammar/language-eml.txt index 62272aeba2..3a6f835a65 100644 --- a/vendor/licenses/grammar/language-eml.txt +++ b/vendor/licenses/grammar/language-eml.txt @@ -1,7 +1,7 @@ --- type: grammar name: language-eml -version: ffb4afaf1a34fd60522c1e53dc92aeefcb150897 +version: 657451acd85f1c46359d4a66772b95c0b7f95736 license: mit --- Copyright (c) 2019 Mario Zaizar diff --git a/vendor/licenses/grammar/language-haskell.txt b/vendor/licenses/grammar/language-haskell.txt index 3c732d6482..9edfdde005 100644 --- a/vendor/licenses/grammar/language-haskell.txt +++ b/vendor/licenses/grammar/language-haskell.txt @@ -1,7 +1,7 @@ --- type: grammar name: language-haskell -version: 3c71c9eda5ab9ea094fd652df6688f9858073cb7 +version: a1adeb73d19206ff0a3505fc2752fb0cd13b4ac5 license: mit --- The MIT License (MIT) diff --git a/vendor/licenses/grammar/language-msl.txt b/vendor/licenses/grammar/language-msl.txt index 1b7f3d96f1..b7db398c03 100644 --- a/vendor/licenses/grammar/language-msl.txt +++ b/vendor/licenses/grammar/language-msl.txt @@ -1,11 +1,12 @@ --- type: grammar name: language-msl -version: 8418ec2b4afe24660f05f0ddf9115d0beb3beb85 +version: 955e537fcbb14ef308a706eee72085a32e28d46a license: mit --- MIT License +Copyright (c) 2020 mIRC-Scripters Copyright (c) 2017 lol2k Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/vendor/licenses/grammar/language-renpy.txt b/vendor/licenses/grammar/language-renpy.txt index 9e2fdc507c..349c2908f7 100644 --- a/vendor/licenses/grammar/language-renpy.txt +++ b/vendor/licenses/grammar/language-renpy.txt @@ -1,7 +1,7 @@ --- type: grammar name: language-renpy -version: 8c6682b4fceb05f91bd18b79a4e9133da61299b9 +version: e9743cb1b453c27e7d34ca1283aec015f46eda8e license: mit --- Original work Copyright (c) 2014 GitHub Inc. diff --git a/vendor/licenses/grammar/language-roff.txt b/vendor/licenses/grammar/language-roff.txt index 8049bcaa33..2c8da5ec29 100644 --- a/vendor/licenses/grammar/language-roff.txt +++ b/vendor/licenses/grammar/language-roff.txt @@ -1,10 +1,10 @@ --- type: grammar name: language-roff -version: 755ec54822442266090610857363b54354b2a617 +version: f0b7e16fe304ab886c667fc09a34f8704034f1b5 license: isc --- -Copyright (c) 2016-2019, John Gardner +Copyright (c) 2016-2020, John Gardner Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above diff --git a/vendor/licenses/grammar/language-shellscript.txt b/vendor/licenses/grammar/language-shellscript.txt index c5822988cb..6a4591bcbb 100644 --- a/vendor/licenses/grammar/language-shellscript.txt +++ b/vendor/licenses/grammar/language-shellscript.txt @@ -1,7 +1,7 @@ --- type: grammar name: language-shellscript -version: 0bba7949ad6beaece790c121344407c012b5346e +version: b4e945380ecd130089e9514fe5adca7152c3b253 license: mit --- Copyright (c) 2014 GitHub Inc. diff --git a/vendor/licenses/grammar/r.tmbundle.txt b/vendor/licenses/grammar/r.tmbundle.txt index 5e9b12f4c8..64f7a58e75 100644 --- a/vendor/licenses/grammar/r.tmbundle.txt +++ b/vendor/licenses/grammar/r.tmbundle.txt @@ -1,7 +1,7 @@ --- type: grammar name: r.tmbundle -version: d005a0f1055020757b797e4959d1b43ece3708aa +version: 6a15532161ab833f2785a7fca0d3de48f1ad87bf license: permissive --- If not otherwise specified (see below), files in this repository fall under the following license: diff --git a/vendor/licenses/grammar/vscode-codeql.txt b/vendor/licenses/grammar/vscode-codeql.txt index 654e7e929c..79c1aad5a6 100644 --- a/vendor/licenses/grammar/vscode-codeql.txt +++ b/vendor/licenses/grammar/vscode-codeql.txt @@ -1,7 +1,7 @@ --- type: grammar name: vscode-codeql -version: 2435a0b2f7f61b2ee19f87edc04e46e4915dea74 +version: '059a75c5a460ac6a061b88ca84c18b92ceef755d' license: mit --- Copyright (c) 2019 GitHub, Inc. diff --git a/vendor/licenses/grammar/vscode-gcode-syntax.txt b/vendor/licenses/grammar/vscode-gcode-syntax.txt index 8adaff0c6a..666a9dc260 100644 --- a/vendor/licenses/grammar/vscode-gcode-syntax.txt +++ b/vendor/licenses/grammar/vscode-gcode-syntax.txt @@ -1,7 +1,7 @@ --- type: grammar name: vscode-gcode-syntax -version: 7702ae413cd87a016498d778097a58253531a407 +version: aff7d787d5c0de4729038276e8fb8635929683ea license: mit --- MIT License diff --git a/vendor/licenses/grammar/vscode-hack.txt b/vendor/licenses/grammar/vscode-hack.txt index a95c04d7e2..6520e4cfb4 100644 --- a/vendor/licenses/grammar/vscode-hack.txt +++ b/vendor/licenses/grammar/vscode-hack.txt @@ -1,7 +1,7 @@ --- type: grammar name: vscode-hack -version: 72beaf978fa89d1a90a1cc60c12d0b1f6ca77413 +version: 552d910a74c1ec237ddc3b39355794f4fbb5a952 license: mit --- MIT License diff --git a/vendor/licenses/grammar/vscode-lean.txt b/vendor/licenses/grammar/vscode-lean.txt index 2121d31ceb..cd782dd49b 100644 --- a/vendor/licenses/grammar/vscode-lean.txt +++ b/vendor/licenses/grammar/vscode-lean.txt @@ -1,7 +1,7 @@ --- type: grammar name: vscode-lean -version: 8019b3fb444072f38788123cd9cdf9dade6626df +version: e43beaa72c428cdcc531078bcb98f444f5270900 license: apache-2.0 --- Apache License diff --git a/vendor/licenses/grammar/vscode-prisma.txt b/vendor/licenses/grammar/vscode-prisma.txt index abb5b08bb3..0df1268092 100644 --- a/vendor/licenses/grammar/vscode-prisma.txt +++ b/vendor/licenses/grammar/vscode-prisma.txt @@ -1,7 +1,7 @@ --- type: grammar name: vscode-prisma -version: 22b1c9ae85630335e45624ca182dcf9510ee0236 +version: 9b44572322026383c0ae44ada9fd628d184be0da license: apache-2.0 --- Apache License diff --git a/vendor/licenses/grammar/vscode-vlang.txt b/vendor/licenses/grammar/vscode-vlang.txt index 301b224a0f..6ff72f84b0 100644 --- a/vendor/licenses/grammar/vscode-vlang.txt +++ b/vendor/licenses/grammar/vscode-vlang.txt @@ -1,7 +1,7 @@ --- type: grammar name: vscode-vlang -version: 8fd5e7ec6867d99c04b1662503f65e512f02aa67 +version: 770d3e32d03b59f93f66be58af9dd7f3560dad6a license: mit --- MIT License diff --git a/vendor/licenses/grammar/zephir-sublime.txt b/vendor/licenses/grammar/zephir-sublime.txt index dea6d1c300..f39b7d817d 100644 --- a/vendor/licenses/grammar/zephir-sublime.txt +++ b/vendor/licenses/grammar/zephir-sublime.txt @@ -1,10 +1,10 @@ --- type: grammar name: zephir-sublime -version: 1935db8e087e2a9323d09b9b136d405abfb17975 +version: 86d8d61843f2ca0b6ef9dfd3b606fab33cc49e67 license: mit --- -Copyright (c) 2014-2017 Zephir Team +Copyright (c) 2014-2020 Zephir Team http://zephir-lang.com MIT License