diff --git a/docs/source/conf.py b/docs/source/conf.py index defec39..d5e1ed4 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -60,9 +60,9 @@ # built documents. # # The short X.Y version. -version = u'1.1.0' +version = u'1.2.0' # The full version, including alpha/beta/rc tags. -release = u'1.1.0' +release = u'1.2.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/gramfuzz/__init__.py b/gramfuzz/__init__.py index e8cf847..e0e2c9e 100644 --- a/gramfuzz/__init__.py +++ b/gramfuzz/__init__.py @@ -20,6 +20,9 @@ import gramfuzz.utils as utils +__version__ = "1.2.0" + + class GramFuzzer(object): """ ``GramFuzzer`` is a singleton class that is used to diff --git a/setup.py b/setup.py index e30697f..705f784 100644 --- a/setup.py +++ b/setup.py @@ -23,13 +23,13 @@ * and more! """, license = 'MIT', - version = '1.1.0', + version = '1.2.0', author = 'James \'d0c_s4vage\' Johnson', maintainer = 'James \'d0c_s4vage\' Johnson', author_email = 'd0c.s4vage@gmail.com', url = 'https://github.com/d0c-s4vage/gramfuzz', platforms = 'Cross Platform', - download_url = "https://github.com/d0c-s4vage/gramfuzz/tarball/v1.1.0", + download_url = "https://github.com/d0c-s4vage/gramfuzz/tarball/v1.2.0", # NO REQUIREMENTS!! #install_requires = open(os.path.join(os.path.dirname(__file__), "requirements.txt")).read().split("\n"),