diff options
author | Roger Dingledine <arma@torproject.org> | 2008-09-30 09:37:18 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2008-09-30 09:37:18 +0000 |
commit | a04baf14b6aa0260eb7bcc44e88df09826e3a82b (patch) | |
tree | 0916f8763e6ef03d02162fd8c6b9308bb2c364c5 | |
parent | f2708dd40fb9abd7be551afe9975ee46501eebc2 (diff) | |
download | tor-a04baf14b6aa0260eb7bcc44e88df09826e3a82b.tar.gz tor-a04baf14b6aa0260eb7bcc44e88df09826e3a82b.zip |
bump to 0.2.1.6-alpha, and note that the exclude*nodes configtor-0.2.1.6-alpha
discussion hasn't finished.
svn:r17011
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | contrib/tor-mingw.nsi.in | 2 | ||||
-rw-r--r-- | src/win32/orconfig.h | 2 |
4 files changed, 9 insertions, 7 deletions
@@ -1,4 +1,4 @@ -Changes in version 0.2.1.6-alpha - 2008-09-29 +Changes in version 0.2.1.6-alpha - 2008-09-30 o Major features: - Implement proposal 121: make it possible to build hidden services that only certain clients are allowed to connect to. This is @@ -11,9 +11,11 @@ Changes in version 0.2.1.6-alpha - 2008-09-29 i.e., the new default value for HidServDirectoryV2 is 1. This is the last step in proposal 114, which aims to make hidden service lookups more reliable. - - Allow node restrictions to include country codes. The syntax to - exclude nodes in a country with country code XX is "ExcludeNodes - {XX}". Patch from Robert Hogan. + - Start work to allow node restrictions to include country codes. The + syntax to exclude nodes in a country with country code XX is + "ExcludeNodes {XX}". Patch from Robert Hogan. It still needs some + refinement to decide what config options should take priority if + you ask to both use a particular node and exclude it. - Allow ExitNodes list to include IP ranges and country codes, just like the Exclude*Nodes lists. Patch from Robert Hogan. diff --git a/configure.in b/configure.in index 134b7abd4f..222071880a 100644 --- a/configure.in +++ b/configure.in @@ -5,7 +5,7 @@ dnl Copyright (c) 2007-2008, The Tor Project, Inc. dnl See LICENSE for licensing information AC_INIT -AM_INIT_AUTOMAKE(tor, 0.2.1.5-alpha-dev) +AM_INIT_AUTOMAKE(tor, 0.2.1.6-alpha) AM_CONFIG_HEADER(orconfig.h) AC_CANONICAL_HOST diff --git a/contrib/tor-mingw.nsi.in b/contrib/tor-mingw.nsi.in index 807d222209..f196d5e149 100644 --- a/contrib/tor-mingw.nsi.in +++ b/contrib/tor-mingw.nsi.in @@ -9,7 +9,7 @@ !include "FileFunc.nsh" !insertmacro GetParameters -!define VERSION "0.2.1.5-alpha-dev" +!define VERSION "0.2.1.6-alpha" !define INSTALLER "tor-${VERSION}-win32.exe" !define WEBSITE "https://www.torproject.org/" !define LICENSE "LICENSE" diff --git a/src/win32/orconfig.h b/src/win32/orconfig.h index e2075d636b..8a263bf4a4 100644 --- a/src/win32/orconfig.h +++ b/src/win32/orconfig.h @@ -227,6 +227,6 @@ #define USING_TWOS_COMPLEMENT /* Version number of package */ -#define VERSION "0.2.1.5-alpha-dev" +#define VERSION "0.2.1.6-alpha" |