From eb1dbb1023ca4d5c207936e1e7f39aa323eebe2c Mon Sep 17 00:00:00 2001 From: Arnaud Cornet Date: Fri, 15 Feb 2008 23:59:30 +0100 Subject: [PATCH 1/4] Update src/version.h and Changelog for release. --- ChangeLog | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++ src/version.h | 2 +- 2 files changed, 58 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 56a80f4..f0c3a7a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,60 @@ +commit ba4e70d6647cab63471391649adc7d5029d43228 +Author: Loïc Gomez +Date: Mon Feb 4 18:38:09 2008 +0100 + + fix unwanted commit + +commit efe0c43b9cdd3c0a4d1183678b36e2c33d7383fa +Author: Loïc Gomez +Date: Mon Feb 4 18:36:35 2008 +0100 + + Documentation fixes + - update bip.vim and bip.conf sample files + - remove nonsense LOG_STD log level + +commit 89e88f6b7ba73eabe11d1dfae11131a9095248c2 +Author: Loïc Gomez +Date: Mon Feb 4 18:07:27 2008 +0100 + + /BIP commands: + - fix "(admin)" info inverted in /BIP list users + +commit fd5e483a499d8b4986128e9be7bcb70cc8315c8a +Author: Arnaud Cornet +Date: Sun Feb 3 11:55:24 2008 +0100 + + Warn only when open files limit is smaller that 256. + +commit b024221cecb8f61e00c251f9785e84852169667b +Author: Arnaud Cornet +Date: Sat Feb 2 12:46:20 2008 +0100 + + Use const varibable more consistently. + +commit d5ef114c2e71e444cf698b56052e066e409f57b5 +Author: Arnaud Cornet +Date: Tue Jan 22 00:36:18 2008 +0100 + + Have autodirt install manpages. + +commit 7470ebe96eb381e660508a32b81beba4f20e10f5 +Author: Arnaud Cornet +Date: Mon Jan 21 22:21:09 2008 +0100 + + Move bip.conf man page to section 5 (Fix debian bug 461871). + +commit 055266f92decb1c7155748f9dfd230fa63172be7 +Author: Arnaud Cornet +Date: Sun Jan 20 18:51:04 2008 +0100 + + Add -git to version string. + +commit f8c2876633167e36340cfe1304f2cd412168fc18 +Author: Arnaud Cornet +Date: Sun Jan 20 18:51:01 2008 +0100 + + Update src/version.h and Changelog for release. + commit f1cc6451f5d1815d2865567cd841ac06fd32be5a Author: Arnaud Cornet Date: Sun Jan 20 18:49:44 2008 +0100 diff --git a/src/version.h b/src/version.h index 85a52d6..2e79713 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define BIP_VERSION "0.7.0-RC1-git" +#define BIP_VERSION "0.7.0" From 2516a89ac873cc04dc2403b9b3400a5125cc6828 Mon Sep 17 00:00:00 2001 From: Arnaud Cornet Date: Fri, 15 Feb 2008 23:59:35 +0100 Subject: [PATCH 2/4] Add -git to version string. --- src/version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/version.h b/src/version.h index 2e79713..346febd 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define BIP_VERSION "0.7.0" +#define BIP_VERSION "0.7.0-git" From 303503cfc75634b891664afa00ccdad290e464bc Mon Sep 17 00:00:00 2001 From: Arnaud Cornet Date: Sat, 16 Feb 2008 11:32:13 +0100 Subject: [PATCH 3/4] Post release leak fix. :) --- src/irc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/irc.c b/src/irc.c index a7e5fff..2da216b 100644 --- a/src/irc.c +++ b/src/irc.c @@ -2030,8 +2030,8 @@ void irc_server_free(struct link_server *s) hash_it_next(&hi)) { struct channel *chan = hash_it_item(&hi); channel_free(chan); - } + hash_clean(&s->channels); free(s); } From 6cee8c728f4465e2cb185d2e32e1d6587c063a41 Mon Sep 17 00:00:00 2001 From: Arnaud Cornet Date: Sat, 16 Feb 2008 11:33:00 +0100 Subject: [PATCH 4/4] bip-release glitch fix. --- scripts/bip-release | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/bip-release b/scripts/bip-release index 612bda9..0795587 100755 --- a/scripts/bip-release +++ b/scripts/bip-release @@ -27,6 +27,7 @@ cd $tmpdir tar xf $prefix.tar cd $prefix ./bootstrap +rm -rf autom4te.cache cd .. tar czf $olddir/../$prefix.tar.gz $prefix cd $olddir