diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ecfce3e..ae5270c 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 0.3.4-dev +current_version = 0.3.5 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? serialize = {major}.{minor}.{patch}-{release} diff --git a/rets/__init__.py b/rets/__init__.py index 923cb76..8e11787 100644 --- a/rets/__init__.py +++ b/rets/__init__.py @@ -2,7 +2,7 @@ from rets.http.client import RetsHttpClient __title__ = 'rets' -__version__ = '0.3.4-dev' +__version__ = '0.3.5' __author__ = 'Martin Liu ' __license__ = 'MIT License' diff --git a/setup.py b/setup.py index d7237a5..2b92525 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ setup( name='rets-python', - version='0.3.4-dev', + version='0.3.5', description='rets-python', long_description=long_desc, author='Martin Liu',