# HG changeset patch # User Richard Jones # Date 1159933956 0 # Node ID 14e3bfec5e4a9c8ce98a6b8e90d7ebda05cc6a38 # Parent 6a96ad6436297c9dcc791fbede85c7cd64c05667 *** empty log message *** diff -r 6a96ad643629 -r 14e3bfec5e4a CHANGES.txt --- a/CHANGES.txt Wed Oct 04 02:58:10 2006 +0000 +++ b/CHANGES.txt Wed Oct 04 03:52:36 2006 +0000 @@ -1,7 +1,7 @@ This file contains the changes to the Roundup system over time. The entries are given with the most recent entry first. -2006-??-?? 1.1.3 +2006-10-04 1.2.0 Feature: - supports Python 2.5, including the sqlite3 module - full timezone support (sf patch 1465296) diff -r 6a96ad643629 -r 14e3bfec5e4a doc/announcement.txt --- a/doc/announcement.txt Wed Oct 04 02:58:10 2006 +0000 +++ b/doc/announcement.txt Wed Oct 04 03:52:36 2006 +0000 @@ -1,4 +1,4 @@ -I'm proud to release version 1.1.3 of Roundup. +I'm proud to release version 1.2.0 of Roundup. Feature: - supports Python 2.5, including the sqlite3 module diff -r 6a96ad643629 -r 14e3bfec5e4a roundup/__init__.py --- a/roundup/__init__.py Wed Oct 04 02:58:10 2006 +0000 +++ b/roundup/__init__.py Wed Oct 04 03:52:36 2006 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: __init__.py,v 1.39 2006-10-04 01:12:21 richard Exp $ +# $Id: __init__.py,v 1.40 2006-10-04 03:52:36 richard Exp $ '''Roundup - issue tracking for knowledge workers. @@ -68,6 +68,6 @@ ''' __docformat__ = 'restructuredtext' -__version__ = '1.1.3' +__version__ = '1.2.0' # vim: set filetype=python ts=4 sw=4 et si