Browse Source

Bump version: 1.2.2 → 1.2.3

Nikola Kotur 8 years ago
parent
commit
4570cd7f88
3 changed files with 4 additions and 2 deletions
  1. 2 0
      .bumpversion.cfg
  2. 1 1
      reddrip/__init__.py
  3. 1 1
      setup.py

+ 2 - 0
.bumpversion.cfg

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

+ 1 - 1
reddrip/__init__.py

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

+ 1 - 1
setup.py

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