commit 23cd4fb1b91a3793d1f963a68fc3d3562359e345 Author: Damian Johnson atagar@torproject.org Date: Sun Oct 7 16:09:09 2018 -0700
Stem release 1.7.0 --- docs/change_log.rst | 12 ++++++++++++ docs/index.rst | 2 +- stem/__init__.py | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-)
diff --git a/docs/change_log.rst b/docs/change_log.rst index 73e2cdf8..9230350c 100644 --- a/docs/change_log.rst +++ b/docs/change_log.rst @@ -7,6 +7,7 @@ unreleased. For a monthly report on work being done see my `development log
* :ref:`versioning` * :ref:`unreleased` +* :ref:`version_1.7` * :ref:`version_1.6` * :ref:`version_1.5` * :ref:`version_1.4` @@ -44,6 +45,17 @@ Unreleased The following are only available within Stem's `git repository <download.html>`_.
+.. _version_1.7: + +Version 1.7 (October 7th, 2018) +------------------------------- + +`Stem 1.7 http://blog.atagar.com/stem-release-1-7/`_ is a full year of +improments. Most notably this adds the ability to `download descriptors through +ORPorts +<tutorials/mirror_mirror_on_the_wall.html#where-can-i-get-the-current-descriptors>`_ +and the `stem.directory module <api/directory.html>`_. + * **Controller**
* Listener exceptions and malformed events no longer break further event processing (:trac:`27053`) diff --git a/docs/index.rst b/docs/index.rst index 345798b5..baeae430 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 `Nyx https://nyx.torproject.org/`_. Stem's latest version is **1.6.0** (released November 5th, 2017). +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 `Nyx https://nyx.torproject.org/`_. Stem's latest version is **1.7.0** (released October 7th, 2018).
.. 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 f95d1b5e..9a9aec59 100644 --- a/stem/__init__.py +++ b/stem/__init__.py @@ -488,7 +488,7 @@ Library for working with the tor process. import stem.util import stem.util.enum
-__version__ = '1.6.0-dev' +__version__ = '1.7.0' __author__ = 'Damian Johnson' __contact__ = 'atagar@torproject.org' __url__ = 'https://stem.torproject.org/'