Commit 3884d372 authored by Damian Johnson's avatar Damian Johnson
Browse files

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
parent d8e16b76
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -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)
+2 −2
Original line number Diff line number Diff line
@@ -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**...

       ::
+1 −1
Original line number Diff line number Diff line
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
+1 −1
Original line number Diff line number Diff line
@@ -441,7 +441,7 @@ Library for working with the tor process.
  ================= ===========
"""

__version__ = '1.4.0'
__version__ = '1.4.1'
__author__ = 'Damian Johnson'
__contact__ = 'atagar@torproject.org'
__url__ = 'https://stem.torproject.org/'