Changeset - 21383fad09b1
[Not reviewed]
0.3
0 4 0
Branko Majic (branko) - 6 years ago 2017-12-20 14:00:32
branko@majic.rs
CONNT-29: Bumping version back to maintenance.
4 files changed with 8 insertions and 4 deletions:
0 comments (0 inline, 0 general)
docs/conf.py
Show inline comments
 
@@ -57,13 +57,13 @@ copyright = u'2013, Branko Majic'
 

	
 
# The version info for the project you're documenting, acts as replacement for
 
# |version| and |release|, also used in various other places throughout the
 
# 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
 

	
 
# The language for content autogenerated by Sphinx. Refer to documentation
 
# for a list of supported languages.
 
#language = None
docs/releasenotes.rst
Show inline comments
 
@@ -9,12 +9,16 @@
 

	
 

	
 
Release Notes
 
=============
 

	
 

	
 
0.3-maint
 
---------
 

	
 

	
 
0.3.0
 
-----
 

	
 
Breaking changes:
 

	
 
* Package now has hard dependency on more specific versions of
docs/releaseprocedures.rst
Show inline comments
 
@@ -233,13 +233,13 @@ 7. Push release to PyPI:
 
   1. Tag the release::
 

	
 
        hg tag "$VERSION"
 

	
 
   2. Push the (tested) built source distribution::
 

	
 
        python setup.py upload
 
        python setup.py sdist upload
 

	
 
8. Clean-up the maintenance branch:
 

	
 
   1. Start a new release notes section in ``docs/releasenotes.rst``::
 

	
 
        sed -i "/^Release Notes$/{N;s/$/\n\n\n${BRANCH}-maint\n-----------/}" docs/releasenotes.rst
 
@@ -256,13 +256,13 @@ 8. Clean-up the maintenance branch:
 
   4. Show differences before committing::
 

	
 
        hg diff
 

	
 
   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:
 

	
 
   .. warning::
 
      Make sure **not** to run these steps when making a patch release!
setup.py
Show inline comments
 
@@ -34,13 +34,13 @@ INSTALL_REQUIREMENTS = [
 

	
 
# allow setup.py to be run from any path
 
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
 

	
 
setup(
 
    name='django-conntrackt',
 
    version='0.3.0',
 
    version='0.3-maint',
 
    packages=find_packages(exclude=["testproject", "testproject.*"]),
 
    include_package_data=True,
 
    license='GPLv3+',
 
    description='A simple application for tracking connection requirements between different entities in a network.',
 
    long_description=README,
 
    url='http://projects.majic.rs/conntrackt',
0 comments (0 inline, 0 general)