Browse Source

Bump version: 1.1.0 → 1.2.0

Nikola Kotur 10 years ago
parent
commit
27be4eca44
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

@@ -1,6 +1,6 @@
 [bumpversion]
-current_version = 1.1.0
 files = setup.py reddrip/__init__.py
 commit = True
 tag = True
 tag_name = "v{new_version}"
+

+ 1 - 1
reddrip/__init__.py

@@ -1,6 +1,6 @@
 import sys
 
-__VERSION__ = "1.1.0"
+__VERSION__ = "1.2.0"
 
 if __name__ == "__main__":
     print "Hi."

+ 1 - 1
setup.py

@@ -20,7 +20,7 @@
 import os
 from setuptools import setup, find_packages
 
-__VERSION__ = "1.1.0"
+__VERSION__ = "1.2.0"
 
 root_dir = os.path.abspath(os.path.dirname(__file__))
 with open(os.path.join(root_dir, "README.md")) as f: