summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatth?us G. Chajdas <dev@anteru.net>2018-11-24 18:04:30 +0100
committerMatth?us G. Chajdas <dev@anteru.net>2018-11-24 18:04:30 +0100
commit4792cccf7886199bd6d49dbe487f213c0f8094ce (patch)
tree573cb88fde88ab2647dd4886f188bce3a6a4f7f9
parenta37f5614f11f3d5af660a024f1749dc7eee7e8ad (diff)
downloadpygments-4792cccf7886199bd6d49dbe487f213c0f8094ce.tar.gz
Update changelog and version number.
-rw-r--r--CHANGES13
-rw-r--r--pygments/__init__.py2
-rwxr-xr-xsetup.py2
3 files changed, 15 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 0bab9118..af4141f2 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,19 @@ Issue numbers refer to the tracker at
pull request numbers to the requests at
<https://bitbucket.org/birkenfeld/pygments-main/pull-requests/merged>.
+Version 2.3.0
+-------------
+(not yet released)
+
+- Added lexers:
+
+ * Fennel (PR#783)
+ * HLSL (PR#675)
+
+- Added Python 3.7 support (PR#772)
+- Fix incorrect token type in SCSS for single-quote strings (#1322)
+- Use `terminal256` formatter if `TERM` contains `256` (PR#666)
+
Version 2.2.0
-------------
(release Jan 22, 2017)
diff --git a/pygments/__init__.py b/pygments/__init__.py
index 394a85f2..19aafdeb 100644
--- a/pygments/__init__.py
+++ b/pygments/__init__.py
@@ -29,7 +29,7 @@ import sys
from pygments.util import StringIO, BytesIO
-__version__ = '2.2.0'
+__version__ = '2.3.0'
__docformat__ = 'restructuredtext'
__all__ = ['lex', 'format', 'highlight']
diff --git a/setup.py b/setup.py
index 1705923c..7e6eca8c 100755
--- a/setup.py
+++ b/setup.py
@@ -48,7 +48,7 @@ else:
setup(
name = 'Pygments',
- version = '2.2.0',
+ version = '2.3.0',
url = 'http://pygments.org/',
license = 'BSD License',
author = 'Georg Brandl',