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
 
@@ -57,15 +57,15 @@ 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
docs/releasenotes.rst
Show inline comments
 
@@ -8,12 +8,32 @@
 
   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.
setup.py
Show inline comments
 
@@ -29,13 +29,13 @@ TEST_REQUIREMENTS = [str(r.req) for r in
 

	
 
# 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',
0 comments (0 inline, 0 general)