commit 84c4f7524dcd2040b7df33f15acc63c509efa74e Author: Arturo Filastò arturo@filasto.net Date: Wed Nov 30 20:06:06 2016 +0000
Add ChangeLog entry for 2.1.0-rc.1
* Bump version number --- ChangeLog.rst | 30 ++++++++++++++++++++++++++++++ Makefile | 2 +- ooni/__init__.py | 2 +- 3 files changed, 32 insertions(+), 2 deletions(-)
diff --git a/ChangeLog.rst b/ChangeLog.rst index 7798774..6f9a8fc 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,6 +1,36 @@ Changelog =========
+v2.1.0-rc.1 (Wed, 30 Nov 2016) +------------------------------ + +Feature list: + +* Add support for running WhatsApp and Facebook Messenger instant messagging + tests. + +* Add support for testing reachability of Tor bridges via tcp_connect. + +* Add support for viewing and sharing ooniprobe logs via the Web UI. + +Improvements: + +* All HTTP based tests no longer follow redirects to loopback addresses: + https://github.com/TheTorProject/ooni-probe/issues/605 + +* The IP address of the probe is also stripped from the HTTP response + headers: + https://github.com/TheTorProject/ooni-probe/issues/657 + +* Measurements are now sorted from most recent to oldest in the measurements + tab. + +Bug fixes: + +* Deferreds being called twice: + https://github.com/TheTorProject/ooni-probe/issues/676 + + v2.0.2 (Wed, 16 Nov 2016) --------------------------
diff --git a/Makefile b/Makefile index e22afb4..9ff01b2 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION = 2.0.2 +VERSION = 2.1.0rc1
man: cd docs && make man diff --git a/ooni/__init__.py b/ooni/__init__.py index 9d479c9..6207890 100644 --- a/ooni/__init__.py +++ b/ooni/__init__.py @@ -1,7 +1,7 @@ # -*- encoding: utf-8 -*-
__author__ = "Open Observatory of Network Interference" -__version__ = "2.0.3.dev0" +__version__ = "2.1.0-rc.1"
__all__ = [ 'agent',