summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-10-16 12:19:03 +0200
committerGeorg Brandl <georg@python.org>2014-10-16 12:19:03 +0200
commitf41e8c594e76855611b3b3dfca300894bd29f1c4 (patch)
treeff068c43c1aed92b1a36ae17d8ecaa74277577a3
parent435daf7051ef1a6b4b341f53afaf8bf354aac210 (diff)
downloadpygments-f41e8c594e76855611b3b3dfca300894bd29f1c4.tar.gz
Bump to 2.0rc1.2.0rc1
-rw-r--r--CHANGES6
-rw-r--r--pygments/__init__.py2
-rwxr-xr-xsetup.py2
3 files changed, 5 insertions, 5 deletions
diff --git a/CHANGES b/CHANGES
index c1e0d7f3..95f975ac 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6,9 +6,9 @@ Issue numbers refer to the tracker at
pull request numbers to the requests at
<http://bitbucket.org/birkenfeld/pygments-main/pull-requests/merged>.
-Version 2.0
------------
-(under development)
+Version 2.0rc1
+--------------
+(released Oct 16, 2014)
- Dropped Python 2.4 and 2.5 compatibility. This is in favor of single-source
compatibility between Python 2.6, 2.7 and 3.3+.
diff --git a/pygments/__init__.py b/pygments/__init__.py
index a47f686e..2382efcb 100644
--- a/pygments/__init__.py
+++ b/pygments/__init__.py
@@ -26,7 +26,7 @@
:license: BSD, see LICENSE for details.
"""
-__version__ = '2.0pre'
+__version__ = '2.0rc1'
__docformat__ = 'restructuredtext'
__all__ = ['lex', 'format', 'highlight']
diff --git a/setup.py b/setup.py
index f1bbfbb2..c591e91d 100755
--- a/setup.py
+++ b/setup.py
@@ -54,7 +54,7 @@ else:
setup(
name = 'Pygments',
- version = '2.0pre',
+ version = '2.0rc1',
url = 'http://pygments.org/',
license = 'BSD License',
author = 'Georg Brandl',