diff --git a/docs/conf.py b/docs/conf.py --- a/docs/conf.py +++ b/docs/conf.py @@ -60,9 +60,9 @@ copyright = u'2013, Branko Majic' # 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. diff --git a/docs/releasenotes.rst b/docs/releasenotes.rst --- a/docs/releasenotes.rst +++ b/docs/releasenotes.rst @@ -11,6 +11,26 @@ 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 `_ ] +* Simple search functionality, including search suggestions if JavaScript is + enabled. [ `CONNT-19 `_, + `CONNT-23 `_ ] +* Removing an object will list all related objects that will get removed as + well. [ `CONNT-20 `_ ] + +Bug fixes: + +* Generates valid XHTML5 code now. [ `CONNT-24 `_ ] + 0.1 --- diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ os.chdir(os.path.normpath(os.path.join(o setup( name='django-conntrackt', - version='0.1', + version='0.2', packages=find_packages(exclude=["projtest", "projtest.*"]), include_package_data=True, license='GPLv3+',