commit 53903095cf2814752bab0e84f9b833b531f77a16 Author: Damian Johnson atagar@torproject.org Date: Tue Jan 3 10:21:46 2017 -0800
Stem release 1.5.4
Hotfix release so our descriptor validator is content with the live tor consensus...
https://trac.torproject.org/projects/tor/ticket/21059 --- docs/change_log.rst | 3 +++ docs/index.rst | 2 +- stem/__init__.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/docs/change_log.rst b/docs/change_log.rst index a3b3d9a..3da184e 100644 --- a/docs/change_log.rst +++ b/docs/change_log.rst @@ -114,6 +114,9 @@ The following are only available within Stem's `git repository * **Version 1.5.3** (December 5th, 2016) - including tests and site in the release tarball
+ * **Version 1.5.4** (January 4th, 2017) - drop validation of the order of + fields in the tor consensus (:trac:`21059`) + .. _version_1.4:
Version 1.4 (May 13th, 2015) diff --git a/docs/index.rst b/docs/index.rst index f265f4e..1df01d1 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -1,7 +1,7 @@ Welcome to Stem! ================
-Stem is a Python controller library for `Tor https://www.torproject.org/`_. With it you can use Tor's `control protocol https://gitweb.torproject.org/torspec.git/tree/control-spec.txt`_ to script against the Tor process, or build things such as `arm https://www.atagar.com/arm/`_. Stem's latest version is **1.5.3** (released December 5th, 2016). +Stem is a Python controller library for `Tor https://www.torproject.org/`_. With it you can use Tor's `control protocol https://gitweb.torproject.org/torspec.git/tree/control-spec.txt`_ to script against the Tor process, or build things such as `arm https://www.atagar.com/arm/`_. Stem's latest version is **1.5.4** (released January 3rd, 2017).
.. Main Stem Logo Source: http://www.wpclipart.com/plants/assorted/P/plant_stem.png.html diff --git a/stem/__init__.py b/stem/__init__.py index 66502c8..7a84f8c 100644 --- a/stem/__init__.py +++ b/stem/__init__.py @@ -470,7 +470,7 @@ Library for working with the tor process.
import stem.util.enum
-__version__ = '1.5.3' +__version__ = '1.5.4' __author__ = 'Damian Johnson' __contact__ = 'atagar@torproject.org' __url__ = 'https://stem.torproject.org/'