diff options
-rw-r--r-- | ChangeLog | 21 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | contrib/tor.nsi.in | 2 | ||||
-rw-r--r-- | src/win32/orconfig.h | 2 |
4 files changed, 14 insertions, 13 deletions
@@ -1,4 +1,4 @@ -Changes in version 0.1.1.24 - 2006-09-xx [ongoing] +Changes in version 0.1.1.24 - 2006-09-29 o Major bugfixes: - Allow really slow clients to not hang up five minutes into their directory downloads (suggested by Adam J. Richter). @@ -6,11 +6,8 @@ Changes in version 0.1.1.24 - 2006-09-xx [ongoing] whether we have enough directory information every time we want to do something, only check when the directory information has changed. This should improve client CPU usage by 25-50%. - - If we're a directory mirror and we ask for "all" network status - documents, we would forget that's what we wanted and discard most - of them when they arrived. - - Don't crash if, after a server has been running for a while, it can't - resolve its hostname. + - Don't crash if, after a server has been running for a while, + it can't resolve its hostname. o Minor bugfixes: - Allow Tor to start when RunAsDaemon is set but no logs are set. @@ -21,11 +18,15 @@ Changes in version 0.1.1.24 - 2006-09-xx [ongoing] - Fix configure.in to not produce broken configure files with more recent versions of autoconf. Thanks to Clint for his auto* voodoo. - - Fix NetBSD bug that could allow someone to force uninitialized RAM - to be sent to a server's DNS resolver. This only affects NetBSD and - other platforms that do not bounds-check tolower(). - - Warn when using libevent 1.1a or earlier with win32 or kqueue + - Fix security bug on NetBSD that could allow someone to force + uninitialized RAM to be sent to a server's DNS resolver. This + only affects NetBSD and other platforms that do not bounds-check + tolower(). + - Warn user when using libevent 1.1a or earlier with win32 or kqueue methods: these are known to be buggy. + - If we're a directory mirror and we ask for "all" network status + documents, we would discard status documents from authorities + we don't recognize. Changes in version 0.1.1.23 - 2006-07-30 diff --git a/configure.in b/configure.in index eadbd09d3d..b4d02d8e0c 100644 --- a/configure.in +++ b/configure.in @@ -4,7 +4,7 @@ dnl Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson dnl See LICENSE for licensing information AC_INIT -AM_INIT_AUTOMAKE(tor, 0.1.1.23) +AM_INIT_AUTOMAKE(tor, 0.1.1.24) AM_CONFIG_HEADER(orconfig.h) AC_CANONICAL_HOST diff --git a/contrib/tor.nsi.in b/contrib/tor.nsi.in index 295a8ec21c..f6c539168a 100644 --- a/contrib/tor.nsi.in +++ b/contrib/tor.nsi.in @@ -31,7 +31,7 @@ !include "MUI.nsh" -!define VERSION "0.1.1.23" +!define VERSION "0.1.1.24" !define INSTALLER "tor-${VERSION}-win32.exe" !define WEBSITE "http://tor.eff.org/" diff --git a/src/win32/orconfig.h b/src/win32/orconfig.h index 629d5c82a8..af15699376 100644 --- a/src/win32/orconfig.h +++ b/src/win32/orconfig.h @@ -221,5 +221,5 @@ #define HAVE_EVENT_H /* Version number of package */ -#define VERSION "0.1.1.23" +#define VERSION "0.1.1.24" |