diff --git a/docs/conf.py b/docs/conf.py --- a/docs/conf.py +++ b/docs/conf.py @@ -60,7 +60,7 @@ copyright = u'2013, Branko Majic' # built documents. # # The short X.Y version. -version = '0.3.0' +version = '0.3-maint' # The full version, including alpha/beta/rc tags. release = version diff --git a/docs/releasenotes.rst b/docs/releasenotes.rst --- a/docs/releasenotes.rst +++ b/docs/releasenotes.rst @@ -12,6 +12,10 @@ Release Notes ============= +0.3-maint +--------- + + 0.3.0 ----- diff --git a/docs/releaseprocedures.rst b/docs/releaseprocedures.rst --- a/docs/releaseprocedures.rst +++ b/docs/releaseprocedures.rst @@ -236,7 +236,7 @@ 7. Push release to PyPI: 2. Push the (tested) built source distribution:: - python setup.py upload + python setup.py sdist upload 8. Clean-up the maintenance branch: @@ -259,7 +259,7 @@ 8. Clean-up the maintenance branch: 5. Commit the changes:: - hg commit -m "$ISSUE: Bumping version back maintenance." + hg commit -m "$ISSUE: Bumping version back to maintenance." 9. Clean-up the default branch if you have just released a new major/minor version: diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ os.chdir(os.path.normpath(os.path.join(o setup( name='django-conntrackt', - version='0.3.0', + version='0.3-maint', packages=find_packages(exclude=["testproject", "testproject.*"]), include_package_data=True, license='GPLv3+',