Changeset - b0fc2c3b179f
[Not reviewed]
0.2 default
0 3 0
Branko Majic (branko) - 10 years ago 2013-11-10 14:43:03
branko@majic.rs
Noticket: Updated the application version and release notes for 0.2.
3 files changed with 23 insertions and 3 deletions:
0 comments (0 inline, 0 general)
docs/conf.py
Show inline comments
 
@@ -51,27 +51,27 @@ source_suffix = '.rst'
 
# The master toctree document.
 
master_doc = 'index'
 

	
 
# General information about the project.
 
project = u'Django Conntrackt'
 
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.1'
 
version = '0.2'
 
# The full version, including alpha/beta/rc tags.
 
release = '0.1'
 
release = '0.2'
 

	
 
# The language for content autogenerated by Sphinx. Refer to documentation
 
# for a list of supported languages.
 
#language = None
 

	
 
# There are two options for replacing |today|: either, you set today to some
 
# non-false value, then it is used:
 
#today = ''
 
# Else, today_fmt is used as the format for a strftime call.
 
#today_fmt = '%B %d, %Y'
 

	
 
# List of patterns, relative to source directory, that match files and
docs/releasenotes.rst
Show inline comments
 
@@ -2,21 +2,41 @@
 

	
 
   This file is part of Django Conntrackt documentation.
 

	
 
   This work is licensed under the Creative Commons Attribution-ShareAlike 3.0
 
   Unported License. To view a copy of this license, visit
 
   http://creativecommons.org/licenses/by-sa/3.0/ or send a letter to Creative
 
   Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA.
 

	
 

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

	
 
0.2
 
---
 

	
 
This release contains mainly some usability features, and some minor
 
bug-fixes. No changes to database schema were made.
 

	
 
New features:
 

	
 
* Tabluar representation of project communications, with colour-coding matching
 
  the diagram. [ `CONNT-17 <https://projects.majic.rs/conntrackt/issues/CONNT-17>`_ ]
 
* Simple search functionality, including search suggestions if JavaScript is
 
  enabled. [ `CONNT-19 <https://projects.majic.rs/conntrackt/issues/CONNT-19>`_,
 
  `CONNT-23 <https://projects.majic.rs/conntrackt/issues/CONNT-23>`_ ]
 
* Removing an object will list all related objects that will get removed as
 
  well. [ `CONNT-20 <https://projects.majic.rs/conntrackt/issues/CONNT-20>`_ ]
 

	
 
Bug fixes:
 

	
 
* Generates valid XHTML5 code now. [ `CONNT-24 <https://projects.majic.rs/conntrackt/issues/CONNT-24>`_ ]
 

	
 
0.1
 
---
 

	
 
Initial relase of Django Conntrackt. Contains full support for:
 

	
 
* Managing application data.
 
* Generation of iptables rules.
 
* Generation of communication diagram.
 
* Full user documentation.
setup.py
Show inline comments
 
@@ -23,25 +23,25 @@ import os
 
from setuptools import setup, find_packages
 
from pip.req import parse_requirements
 

	
 
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
 
INSTALL_REQUIREMENTS = [str(r.req) for r in parse_requirements("requirements/production.txt")]
 
TEST_REQUIREMENTS = [str(r.req) for r in parse_requirements("requirements/test.txt")]
 

	
 
# 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.1',
 
    version='0.2',
 
    packages=find_packages(exclude=["projtest", "projtest.*"]),
 
    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',
 
    author='Branko Majic',
 
    author_email='branko@majic.rs',
 
    install_requires=INSTALL_REQUIREMENTS,
 
    tests_require=TEST_REQUIREMENTS,
 
    classifiers=[
 
        'Development Status :: 4 - Beta',
0 comments (0 inline, 0 general)