Released version 0.0.2

This commit is contained in:
Jesse van den Kieboom 2009-04-05 18:13:00 +02:00
parent cf38234be6
commit 448235ddcc
3 changed files with 16 additions and 5 deletions

11
NEWS
View file

@ -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.

8
README
View file

@ -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

View file

@ -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)