summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaylor Yu <catalyst@torproject.org>2018-12-13 18:21:58 -0600
committerDamian Johnson <atagar@torproject.org>2018-12-26 14:57:40 -0800
commit991291cd72c75611028a4d1a63c006b7909937bf (patch)
treea2f16957d2077a3d869ebe534d718f97c259834e
parent23cd4fb1b91a3793d1f963a68fc3d3562359e345 (diff)
Stem release 1.7.11.7.1
Hotfix release requested by Nick incorporating commit 0eb8fda... https://trac.torproject.org/projects/tor/ticket/28731#comment:18
-rw-r--r--docs/change_log.rst3
-rw-r--r--docs/index.rst2
-rw-r--r--stem/__init__.py2
-rw-r--r--stem/process.py2
4 files changed, 6 insertions, 3 deletions
diff --git a/docs/change_log.rst b/docs/change_log.rst
index 9230350c..e359aa2e 100644
--- a/docs/change_log.rst
+++ b/docs/change_log.rst
@@ -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)
diff --git a/docs/index.rst b/docs/index.rst
index baeae430..12ab36c5 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.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
diff --git a/stem/__init__.py b/stem/__init__.py
index 9a9aec59..09188673 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.7.0'
+__version__ = '1.7.1'
__author__ = 'Damian Johnson'
__contact__ = 'atagar@torproject.org'
__url__ = 'https://stem.torproject.org/'
diff --git a/stem/process.py b/stem/process.py
index e2b36ec0..e6aaf50b 100644
--- a/stem/process.py
+++ b/stem/process.py
@@ -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'