summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatth?us G. Chajdas <dev@anteru.net>2019-03-06 20:03:27 +0100
committerMatth?us G. Chajdas <dev@anteru.net>2019-03-06 20:03:27 +0100
commit1f404da40668543d4b3b4493029f75fe732eca9d (patch)
treee59743ff1cedb1125e67d519007f113cec112522
parent9b9886734a7e9a33f268716212ee8c2159fb4242 (diff)
downloadpygments-1f404da40668543d4b3b4493029f75fe732eca9d.tar.gz
Update CHANGES.
-rw-r--r--CHANGES6
-rw-r--r--pygments/lexers/basic.py2
2 files changed, 6 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 3657c3fc..9a7426a3 100644
--- a/CHANGES
+++ b/CHANGES
@@ -17,11 +17,13 @@ Version 2.4.0
* Hspec (PR#790)
* SGF (PR#780)
* Slurm (PR#760)
+ * VBScript (PR#673)
- Updated lexers:
* Cypher (PR#746)
* LLVM (PR#792)
+ * PHP (#1482)
* SQL (PR#672)
* Stan (PR#774)
* Terraform (PR#787)
@@ -30,7 +32,9 @@ Version 2.4.0
- Change ANSI color names (PR#777)
- Fix rare unicode errors on Python 2.7 (PR#798, #1492)
- Updated Trove classifiers and ``pip`` requirements (PR#799)
-- For ``.ts`` files, TypeScript is assumed now (was TypoScript previously)
+- TypoScript uses ``.typoscript`` now (#1498)
+- Fix catastrophic backtracking in the bash lexer (#1494)
+- Fix incorrect links in the Lisp and R lexer documentation (PR#775)
Version 2.3.1
-------------
diff --git a/pygments/lexers/basic.py b/pygments/lexers/basic.py
index e1b018d1..f5f0498e 100644
--- a/pygments/lexers/basic.py
+++ b/pygments/lexers/basic.py
@@ -506,7 +506,7 @@ class VBScriptLexer(RegexLexer):
"""
VBScript is scripting language that is modeled on Visual Basic.
- .. versionadded:: 2.2
+ .. versionadded:: 2.4
"""
name = 'VBScript'
aliases = []