[tor-commits] [stem/master] Stem release 1.4.1

atagar at torproject.org atagar at torproject.org
Mon May 18 19:24:05 UTC 2015


commit 3884d372a477890857d8e4962eda249752761846
Author: Damian Johnson <atagar at torproject.org>
Date:   Mon May 18 12:14:21 2015 -0700

    Stem release 1.4.1
    
    Hotfix release for a couple descriptor issues spotted by Tom...
    
    * Descriptors couldn't be unpickled
      https://trac.torproject.org/projects/tor/ticket/16054
    
    * Parsing error for router status entry bandwidth lines
      https://trac.torproject.org/projects/tor/ticket/16048
---
 docs/change_log.rst |    4 ++++
 docs/download.rst   |    4 ++--
 docs/index.rst      |    2 +-
 stem/__init__.py    |    2 +-
 4 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/docs/change_log.rst b/docs/change_log.rst
index b0b6f03..bbde6f5 100644
--- a/docs/change_log.rst
+++ b/docs/change_log.rst
@@ -93,6 +93,10 @@ And last, Stem also now runs directly under both python2 and python3 without a
   * Added OSX to our `download page <download.html>`_ (:trac:`8588`)
   * Updated our twitter example to work with the service's 1.1 API (:trac:`9003`)
 
+ * **Version 1.4.1** (May 18th, 2015) - fixed issue where descriptors couldn't
+   be unpickled (:trac:`16054`) and a parsing issue for router status entry
+   bandwidth lines (:trac:`16048`)
+
 .. _version_1.3:
 
 Version 1.3 (December 22nd, 2014)
diff --git a/docs/download.rst b/docs/download.rst
index 7dbef38..3047316 100644
--- a/docs/download.rst
+++ b/docs/download.rst
@@ -71,9 +71,9 @@ Download
 
        Signed releases and instructions for both Python 2.x and 3.x. You can
        easily install from its `tarball
-       <https://pypi.python.org/packages/source/s/stem/stem-1.4.0.tar.bz2>`_
+       <https://pypi.python.org/packages/source/s/stem/stem-1.4.1.tar.bz2>`_
        (`sig
-       <https://pypi.python.org/packages/source/s/stem/stem-1.4.0.tar.bz2.asc>`_),
+       <https://pypi.python.org/packages/source/s/stem/stem-1.4.1.tar.bz2.asc>`_),
        or with **pip**...
 
        ::
diff --git a/docs/index.rst b/docs/index.rst
index c00db5c..16a06b2 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.4.0** (released May 13th, 2015).
+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.4.1** (released May 18th, 2015).
 
 .. 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 5134c2f..9ff1263 100644
--- a/stem/__init__.py
+++ b/stem/__init__.py
@@ -441,7 +441,7 @@ Library for working with the tor process.
   ================= ===========
 """
 
-__version__ = '1.4.0'
+__version__ = '1.4.1'
 __author__ = 'Damian Johnson'
 __contact__ = 'atagar at torproject.org'
 __url__ = 'https://stem.torproject.org/'





More information about the tor-commits mailing list