commit 838b3c544ef76f3613f524a89ac2a4ff8bf6056a Author: Arturo Filastò arturo@filasto.net Date: Fri Oct 14 14:54:49 2016 +0200
Update changelog entry for 2.0.0 release
* Bump the version number --- ChangeLog.rst | 27 +++++++++++++++++++++++++++ ooni/__init__.py | 3 ++- 2 files changed, 29 insertions(+), 1 deletion(-)
diff --git a/ChangeLog.rst b/ChangeLog.rst index f847675..d63ca7f 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,6 +1,33 @@ Changelog =========
+v2.0.0 (Fri, 14 Oct 2016) +------------------------------ + +Stable release of ooniprobe 2.0.0 + +Feature list: + +* System daemon for running tests periodically (https://github.com/TheTorProject/ooni-probe/issues/576) + +* Web user interface for viewing measurement results (https://github.com/TheTorProject/ooni-probe/issues/575) + +* New deck format (https://github.com/TheTorProject/ooni-probe/issues/571) + +* Local reports are written in JSON (https://github.com/TheTorProject/ooni-probe/issues/557) + +* Include decks for testing reachability of Tor, websites of IM apps + +* Include the platform as an annotation inside of reports + +Bugfixing since previous release candidates: + +* Fix -w option of ooniprobe (https://github.com/TheTorProject/ooni-probe/issues/623) + +* Scheduler lockfile for RunDecks not being released (https://github.com/TheTorProject/ooni-probe/issues/612) + +* Missing country testing list (https://github.com/TheTorProject/ooni-probe/issues/606) + v2.0.0-rc.3 (Mon, 19 Sep 2016) ------------------------------
diff --git a/ooni/__init__.py b/ooni/__init__.py index afedecd..d950362 100644 --- a/ooni/__init__.py +++ b/ooni/__init__.py @@ -1,7 +1,8 @@ # -*- encoding: utf-8 -*-
__author__ = "Open Observatory of Network Interference" -__version__ = "2.0.0-rc.4.dev" +# XXX note this rc is not public just meant for internal testing +__version__ = "2.0.0-rc4"
__all__ = [ 'agent',
tor-commits@lists.torproject.org