summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/changelog.rst10
-rw-r--r--doc/using.rst11
2 files changed, 16 insertions, 5 deletions
diff --git a/doc/changelog.rst b/doc/changelog.rst
index 39b3db5..ef98cd1 100644
--- a/doc/changelog.rst
+++ b/doc/changelog.rst
@@ -1,7 +1,15 @@
Changelog
=========
-* aioeventlet API is now considered as stable
+Version 0.5
+-----------
+
+* Unit tests now use the aiotest library.
+* Fix for eventlet used with monkey-patching: inject the original threading
+ module and the original threading.get_ident() function in
+ asyncio.base_events.
+* Drop support for Python 2.6 and Python 3.2. aioeventlet depends on trollius
+ and pip which don't support these Python versions anymore.
2014-12-03: Version 0.4
-----------------------
diff --git a/doc/using.rst b/doc/using.rst
index e310766..0676268 100644
--- a/doc/using.rst
+++ b/doc/using.rst
@@ -123,6 +123,10 @@ API
aioeventlet specific functions:
+.. warning::
+ aioeventlet API is not considered as stable yet.
+
+
yield_future
------------
@@ -282,7 +286,7 @@ Requirements:
needed)
* Python 3.3: need Tulip 0.4.1 or newer (``pip install asyncio``),
but Tulip 3.4.1 or newer is recommended
- * Python 2.6-3.2: need Trollius 0.3 or newer (``pip install trollius``),
+ * Python 2.7: need Trollius 0.3 or newer (``pip install trollius``),
but Trollius 1.0 or newer is recommended
Type::
@@ -298,7 +302,7 @@ Run tests with tox
The `tox project <http://testrun.org/tox/latest/>`_ can be used to build a
virtual environment with all runtime and test dependencies and run tests
-against different Python versions (2.6, 2.7, 3.2, 3.3, 3.4).
+against different Python versions (2.7, 3.3, 3.4, 3.5).
To test all Python versions, just type::
@@ -310,17 +314,16 @@ To run tests with Python 2.7, type::
To run tests against other Python versions:
-* ``py26``: Python 2.6
* ``py27``: Python 2.7
* ``py27_patch``: Python 2.7 with eventlet monkey patching
* ``py27_old``: Python 2.7 with the oldest supported versions of eventlet and
trollius
-* ``py32``: Python 3.2
* ``py33``: Python 3.3
* ``py3_patch``: Python 3 with eventlet monkey patching
* ``py3_old``: Python 3 with the oldest supported versions of eventlet and
tulip
* ``py34``: Python 3.4
+* ``py35``: Python 3.5
Run tests manually
------------------