summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2005-08-04 22:45:54 +0000
committerRoger Dingledine <arma@torproject.org>2005-08-04 22:45:54 +0000
commit1d3e63158eabb59680bcf59c7b5484963a7306d6 (patch)
tree9d18b457c6eb5f86f673badc6bde4d6e4587f860
parent9aad89e97373798f5bdc450f0fbc5903dbc96e66 (diff)
downloadtor-1d3e63158eabb59680bcf59c7b5484963a7306d6.tar.gz
tor-1d3e63158eabb59680bcf59c7b5484963a7306d6.zip
bump to 0.1.1.4-alpha in preparation for new release
svn:r4701
-rw-r--r--ChangeLog20
-rw-r--r--configure.in2
-rw-r--r--contrib/tor.nsi2
-rw-r--r--src/win32/orconfig.h2
4 files changed, 23 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index d6ae277e22..df2428d110 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+Changes in version 0.1.1.4-alpha - 2005-08-04
+ o Bugfixes included in 0.1.0.13.
+
+ o Features:
+ - Improve tor_gettimeofday() granularity on windows.
+ - Make clients regenerate their keys when their IP address changes.
+ - Implement some more GETINFO goodness: expose helper nodes, config
+ options, getinfo keys.
+
+
Changes in version 0.1.1.3-alpha - 2005-07-25
o Bugfixes on 0.1.1.2-alpha:
- Fix a bug in handling the controller's "post descriptor"
@@ -88,6 +98,16 @@ Changes in version 0.1.1.1-alpha - 2005-06-29
test this?
+Changes in version 0.1.0.13 - 2005-08-04
+ o Bugfixes on 0.1.0.x:
+ - Fix a critical bug in the security of our crypto handshakes.
+ - Fix a size_t underflow in smartlist_join_strings2() that made
+ it do bad things when you hand it an empty smartlist.
+ - Fix Windows installer to ship Tor license (thanks to Aphex for
+ pointing out this oversight) and put a link to the doc directory
+ in the start menu.
+
+
Changes in version 0.1.0.12 - 2005-07-18
o New directory servers:
- tor26 has changed IP address.
diff --git a/configure.in b/configure.in
index 6c82d10c8a..497dff72d0 100644
--- a/configure.in
+++ b/configure.in
@@ -4,7 +4,7 @@ dnl Copyright 2004-2005 Roger Dingledine, Nick Mathewson
dnl See LICENSE for licensing information
AC_INIT
-AM_INIT_AUTOMAKE(tor, 0.1.1.3-alpha)
+AM_INIT_AUTOMAKE(tor, 0.1.1.4-alpha)
AM_CONFIG_HEADER(orconfig.h)
AC_CANONICAL_HOST
diff --git a/contrib/tor.nsi b/contrib/tor.nsi
index 89fd5c6efd..5508cf7c31 100644
--- a/contrib/tor.nsi
+++ b/contrib/tor.nsi
@@ -31,7 +31,7 @@
!include "MUI.nsh"
-!define VERSION "0.1.1.3-alpha"
+!define VERSION "0.1.1.4-alpha"
!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 dc3b4bbc70..02597f7efe 100644
--- a/src/win32/orconfig.h
+++ b/src/win32/orconfig.h
@@ -218,4 +218,4 @@
#define HAVE_EVENT_H
/* Version number of package */
-#define VERSION "0.1.1.3-alpha"
+#define VERSION "0.1.1.4-alpha"