commit 7cfd6f71ece17a38643f2634b28bd5b662193d57 Author: Damian Johnson atagar@torproject.org Date: Sun Dec 29 14:59:29 2019 -0800
Stem release 1.8.0 --- docs/change_log.rst | 8 ++++++++ docs/index.rst | 2 +- stem/__init__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/docs/change_log.rst b/docs/change_log.rst index 8a357782..53706a74 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.8` * :ref:`version_1.7` * :ref:`version_1.6` * :ref:`version_1.5` @@ -45,6 +46,13 @@ Unreleased The following are only available within Stem's `git repository <download.html>`_.
+.. _version_1.8: + +Version 1.8 (December 29th, 2019) +--------------------------------- + +`Stem 1.8 http://blog.atagar.com/stem-release-1-8/`_ is the final release in Stem’s 1.x series and with it `Python 2.x support https://www.python.org/doc/sunset-python-2/`_. Over a year in the making, this introduces `CollecTor <api/descriptor/collector.html>`_, `bandwidth metric <api/descriptor/bandwidth_file.html>`_, and `HSv3 descriptor support <api/descriptor/hidden_service.html#stem.descriptor.hidden_service.HiddenServiceDescriptorV3>`_. + * **Controller**
* Added :func:`~stem.control.Controller.get_start_time` method to the :class:`~stem.control.Controller` diff --git a/docs/index.rst b/docs/index.rst index 568ab7d3..f5121ecc 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.7.1** (released December 26th, 2018). +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.8** (released December 29th, 2019).
.. 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 293b2b94..68f772f9 100644 --- a/stem/__init__.py +++ b/stem/__init__.py @@ -507,7 +507,7 @@ import traceback import stem.util import stem.util.enum
-__version__ = '1.7.1-dev' +__version__ = '1.8.0' __author__ = 'Damian Johnson' __contact__ = 'atagar@torproject.org' __url__ = 'https://stem.torproject.org/'