From 448235ddcc0b467369300771116b1b1ab49553dd Mon Sep 17 00:00:00 2001 From: Jesse van den Kieboom Date: Sun, 5 Apr 2009 18:13:00 +0200 Subject: [PATCH] Released version 0.0.2 --- NEWS | 11 +++++++++++ README | 8 ++++---- configure.ac | 2 +- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/NEWS b/NEWS index c0eff033..5d5f8204 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,14 @@ += gitg 0.0.2 = +Version 0.0.2 was released on 2009-04-05. + +== Features == + +== Bug fixes == + * Correct UTF-8 conversion for dates + * Revert file with staged changes correctly + * Crasher bug on typing fast in search field + * Crasher bug launching gitg on a fetching repository + = gitg 0.0.1 = Version 0.0.1 was released on 2009-03-01. This release is the first public release of gitg. diff --git a/README b/README index 851ad9db..262298c3 100644 --- a/README +++ b/README @@ -3,19 +3,19 @@ gitg is a GitX clone for GNOME/gtk+. It aims at being a small, fast and convenient tool to visualize git history and actions that benefit from a graphical presentation. -The latest version of gitg is 0.0.1. +The latest version of gitg is 0.0.2. Website: http://trac.novowork.com/gitg Bugs: http://trac.novowork.com/gitg/report Download: http://trac.novowork.com/gitg/Download = Installing gitg = -To install the latest version of gitg, make sure to download gitg-0.0.1.tar.bz2 +To install the latest version of gitg, make sure to download gitg-0.0.2.tar.bz2 from the download site. After downloading the following procedure installs gitg: - $ tar -xjf gitg-0.0.1.tar.bz2 - $ cd gitg-0.0.1 + $ tar -xjf gitg-0.0.2.tar.bz2 + $ cd gitg-0.0.2 $ ./configure $ make $ sudo make install diff --git a/configure.ac b/configure.ac index 4dfc946b..b0b93ba4 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ AC_PREREQ(2.59) m4_define(gitg_major_version, 0) m4_define(gitg_minor_version, 0) -m4_define(gitg_micro_version, 1) +m4_define(gitg_micro_version, 2) m4_define(gitg_version, gitg_major_version.gitg_minor_version.gitg_micro_version) AC_INIT(gitg, gitg_version, http://www.icecrew.nl)