Browse Source

Bump version: 2.0.1 → 2.0.2

Alec Nikolas Reiter 6 years ago
parent
commit
9fc144899e
4 changed files with 5 additions and 5 deletions
  1. 1 1
      .bumpversion.cfg
  2. 2 2
      docs/conf.py
  3. 1 1
      flaskbb/__init__.py
  4. 1 1
      setup.py

+ 1 - 1
.bumpversion.cfg

@@ -1,5 +1,5 @@
 [bumpversion]
-current_version = 2.0.1
+current_version = 2.0.2
 commit = True
 tag = True
 

+ 2 - 2
docs/conf.py

@@ -60,9 +60,9 @@ author = u'Peter Justin'
 # built documents.
 #
 # The short X.Y version.
-version = u'2.0.1'
+version = u'2.0.2'
 # The full version, including alpha/beta/rc tags.
-release = u'2.0.1'
+release = u'2.0.2'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.

+ 1 - 1
flaskbb/__init__.py

@@ -9,7 +9,7 @@
     :copyright: (c) 2014 by the FlaskBB Team.
     :license: BSD, see LICENSE for more details.
 """
-__version__ = "2.0.1"
+__version__ = "2.0.2"
 
 import logging
 logger = logging.getLogger(__name__)

+ 1 - 1
setup.py

@@ -45,7 +45,7 @@ install_requires = get_requirements()
 
 setup(
     name='FlaskBB',
-    version="2.0.1",
+    version="2.0.2",
     url='https://flaskbb.org',
     project_urls={
         'Documentation': 'https://flaskbb.readthedocs.io/en/latest/',