diff options
author | Roger Dingledine <arma@torproject.org> | 2004-11-28 06:44:08 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-11-28 06:44:08 +0000 |
commit | 67dc7baa59e2b38a6720d843b54257ca0dd9e722 (patch) | |
tree | 07e8a5bb3cab860865da634b469df30d6e5620b7 | |
parent | dad760ddd1f4e61009981aa09b2417f10763864c (diff) | |
download | tor-67dc7baa59e2b38a6720d843b54257ca0dd9e722.tar tor-67dc7baa59e2b38a6720d843b54257ca0dd9e722.tar.gz |
bump to 0.0.9rc4
svn:r3001
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | contrib/tor.nsi | 2 | ||||
-rw-r--r-- | src/win32/orconfig.h | 2 |
4 files changed, 11 insertions, 3 deletions
@@ -1,4 +1,12 @@ Changes so far in 0.0.9: +rc4: + o Bugfixes on 0.0.8.1: + - Make windows sockets actually non-blocking (oops), and handle + win32 socket errors better. + + o Bugfixes on 0.0.9rc1: + - Actually catch the -USR2 signal. + rc3: o Bugfixes on 0.0.8.1: - Flush the log file descriptor after we print "Tor opening log file", diff --git a/configure.in b/configure.in index 1d441446c..86e2b80e1 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ AC_INIT -AM_INIT_AUTOMAKE(tor, 0.0.9rc4-cvs) +AM_INIT_AUTOMAKE(tor, 0.0.9rc4) AM_CONFIG_HEADER(orconfig.h) AC_CANONICAL_HOST diff --git a/contrib/tor.nsi b/contrib/tor.nsi index 88a5ed980..c05dabfbb 100644 --- a/contrib/tor.nsi +++ b/contrib/tor.nsi @@ -31,7 +31,7 @@ !include "MUI.nsh" -!define VERSION "0.0.9rc4-cvs" +!define VERSION "0.0.9rc4" !define INSTALLER "tor-${VERSION}-win32.exe" !define WEBSITE "http://freehaven.net/tor/" diff --git a/src/win32/orconfig.h b/src/win32/orconfig.h index a51ae13a2..5956ff033 100644 --- a/src/win32/orconfig.h +++ b/src/win32/orconfig.h @@ -199,4 +199,4 @@ #define UNALIGNED_INT_ACCESS_OK /* Version number of package */ -#define VERSION "0.0.9rc4-cvs" +#define VERSION "0.0.9rc4" |