diff options
-rw-r--r-- | NEWS.txt | 8 | ||||
-rw-r--r-- | src/gtimelog/__init__.py | 2 |
2 files changed, 7 insertions, 3 deletions
@@ -1,5 +1,5 @@ -Changes not yet released -======================== +Changes in version 0.3 (released 2009-12-17) +============================================ * Fix DeprecationWarning: the sets module is deprecated. * Use gtk.StatusIcon if egg.trayicon is not available @@ -13,6 +13,10 @@ Changes not yet released * Show version number in the About dialog (https://bugs.launchpad.net/gtimelog/+bug/308750). +Packagers take note: the main module was renamed from gtimelog.gtimelog to +gtimelog.main. If you have wrapper scripts that used to import 'main' +from gtimelog.gtimelog, you'll have to change them. + Changes in version 0.2.5 ======================== diff --git a/src/gtimelog/__init__.py b/src/gtimelog/__init__.py index 0787338..fe31574 100644 --- a/src/gtimelog/__init__.py +++ b/src/gtimelog/__init__.py @@ -1,3 +1,3 @@ # the gtimelog package -__version__ = '0.3dev' +__version__ = '0.3' |