summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.rst3
-rw-r--r--documentation/conf.py4
-rw-r--r--serial/__init__.py2
3 files changed, 5 insertions, 4 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index e960e61..bf07879 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -647,10 +647,11 @@ Bugfixes (win32):
- win32: handle errors of GetOverlappedResult in read(), fixes #121
-Version 3.x.x 2016-xx-xx
+Version 3.2.0 2016-10-14
--------------------------
Improvements:
+- remove ``serial.aio`` in favor of separte package, ``pyserial-asyncio``
- add client mode to exmaple tcp_serial_redirect.py
- use of monotonic clock for timeouts, when available (Python 3.3 and up)
- [#169] arbitrary baudrate support for BSD family
diff --git a/documentation/conf.py b/documentation/conf.py
index 4cff961..ba5b814 100644
--- a/documentation/conf.py
+++ b/documentation/conf.py
@@ -45,9 +45,9 @@ copyright = u'2001-2016, Chris Liechti'
# built documents.
#
# The short X.Y version.
-version = '3.1'
+version = '3.2'
# The full version, including alpha/beta/rc tags.
-release = '3.1.1'
+release = '3.2.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/serial/__init__.py b/serial/__init__.py
index 3874193..1651dd2 100644
--- a/serial/__init__.py
+++ b/serial/__init__.py
@@ -15,7 +15,7 @@ from pkgutil import extend_path
from serial.serialutil import *
#~ SerialBase, SerialException, to_bytes, iterbytes
-__version__ = '3.1.1'
+__version__ = '3.2'
VERSION = __version__