Stem release 1.7.1

Hotfix release requested by Nick incorporating commit 0eb8fda...

https://trac.torproject.org/projects/tor/ticket/28731#comment:18
This commit is contained in:
Taylor Yu 2018-12-13 18:21:58 -06:00 committed by Damian Johnson
parent 23cd4fb1b9
commit 991291cd72
4 changed files with 6 additions and 3 deletions

View File

@ -117,6 +117,9 @@ and the `stem.directory module <api/directory.html>`_.
* Added a `descriptor download example <tutorials/examples/download_descriptor.html>`_
* Added a `relay connection summary example <tutorials/examples/relay_connections.html>`_
* **Version 1.7.1** (December 26th, 2018) - :func:`~stem.process.launch_tor`
compatibility with an upcoming log format change (:trac:`28731`)
.. _version_1.6:
Version 1.6 (November 5th, 2017)

View File

@ -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.0** (released October 7th, 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.7.1** (released December 26th, 2018).
.. Main Stem Logo
Source: http://www.wpclipart.com/plants/assorted/P/plant_stem.png.html

View File

@ -488,7 +488,7 @@ Library for working with the tor process.
import stem.util
import stem.util.enum
__version__ = '1.7.0'
__version__ = '1.7.1'
__author__ = 'Damian Johnson'
__contact__ = 'atagar@torproject.org'
__url__ = 'https://stem.torproject.org/'

View File

@ -138,7 +138,7 @@ def launch_tor(tor_cmd = 'tor', args = None, torrc_path = None, completion_perce
signal.signal(signal.SIGALRM, timeout_handler)
signal.setitimer(signal.ITIMER_REAL, timeout)
bootstrap_line = re.compile('Bootstrapped ([0-9]+)%: ')
bootstrap_line = re.compile('Bootstrapped ([0-9]+)%')
problem_line = re.compile('\[(warn|err)\] (.*)$')
last_problem = 'Timed out'