commit b0fd64e5dd670becdb98982014d8b7510578cdec Author: Arturo Filastò art@fuffa.org Date: Fri May 9 22:53:09 2014 +0200
Bump to version 1.0.2 --- ChangeLog.md | 14 ++++++++++++++ debian/changelog | 6 ++++++ ooni/__init__.py | 2 +- 3 files changed, 21 insertions(+), 1 deletion(-)
diff --git a/ChangeLog.md b/ChangeLog.md index fda5db1..0ce2a43 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,17 @@ +## v1.0.2 + +* Add ooniprobe manpage. + +* Fix various security issues raised by the least authority audit. + +* Add a test that checks for Tor bridge reachability. + +* Record the IP address of the exit node being used in torified requests. + +* Captive portal test now uses the ooni-probe test templates. + +* Have better test naming consistency. + ## v1.0.1
* Fix bugs in the traceroute test that lead to not all packets being collected. diff --git a/debian/changelog b/debian/changelog index 150b378..af347a7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +ooniprobe (1.0.2-1) stable; urgency=low + + * ooniprobe 1.0.2 + + -- OONI Developers (signing key) ooni-dev@lists.torproject.org Fri, 9 May 2014 10:14:46 +0200 + ooniprobe (1.0.1-1) stable; urgency=low
* ooniprobe 1.0.1 diff --git a/ooni/__init__.py b/ooni/__init__.py index 86f02b3..f44ca57 100644 --- a/ooni/__init__.py +++ b/ooni/__init__.py @@ -1,7 +1,7 @@ # -*- encoding: utf-8 -*-
__author__ = "Open Observatory of Network Interference" -__version__ = "1.0.1" +__version__ = "1.0.2"
__all__ = ['config', 'inputunit', 'kit', 'lib', 'nettest', 'oonicli', 'reporter',