Browse Source

Bump version: 2.0.0 → 2.0.1

Nikola Kotur 3 years ago
parent
commit
38e68d2ea2
3 changed files with 3 additions and 3 deletions
  1. 1 1
      .bumpversion.cfg
  2. 1 1
      reddrip/__init__.py
  3. 1 1
      setup.py

+ 1 - 1
.bumpversion.cfg

@@ -3,4 +3,4 @@ files = setup.py reddrip/__init__.py
 commit = True
 tag = True
 tag_name = v{new_version}
-current_version = 2.0.0
+current_version = 2.0.1

+ 1 - 1
reddrip/__init__.py

@@ -1,6 +1,6 @@
 import sys
 
-__VERSION__ = "2.0.0"
+__VERSION__ = "2.0.1"
 
 if __name__ == "__main__":
     print ("Hi.")

+ 1 - 1
setup.py

@@ -20,7 +20,7 @@
 import os
 from setuptools import setup, find_packages
 
-__VERSION__ = "2.0.0"
+__VERSION__ = "2.0.1"
 
 root_dir = os.path.abspath(os.path.dirname(__file__))
 readme_file = os.path.join(root_dir, "README.md")