summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Liechti <cliechti@gmx.net>2017-07-22 22:50:21 +0200
committerChris Liechti <cliechti@gmx.net>2017-07-22 22:50:21 +0200
commitc54c81d933b847458d465cd77e96cd702ff2e7be (patch)
treeab6c176e37e2b46617b74aa3a40540ba8ea2c588
parent82d568c0ab14ad49e1260148a437d4a30cd88447 (diff)
downloadpyserial-git-3.4.tar.gz
chore: release 3.4v3.4
-rw-r--r--CHANGES.rst4
-rw-r--r--documentation/conf.py4
-rw-r--r--serial/__init__.py2
3 files changed, 5 insertions, 5 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index fab0ffb..82a3b39 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -712,7 +712,7 @@ Bugfixes (win32):
- [#194] spurious write fails with ERROR_SUCCESS
-Version 3.4 2017-07-xx
+Version 3.4 2017-07-22
------------------------
Improvements:
@@ -725,7 +725,7 @@ Improvements:
Bugfixes:
- [#153] list_ports: option to include symlinked devices
-- [#237] workaround for special characters in port names in port list
+- [#237] list_ports: workaround for special characters in port names
Bugfixes (posix):
diff --git a/documentation/conf.py b/documentation/conf.py
index 64605a6..df9d14e 100644
--- a/documentation/conf.py
+++ b/documentation/conf.py
@@ -45,9 +45,9 @@ copyright = u'2001-2017, Chris Liechti'
# built documents.
#
# The short X.Y version.
-version = '3.3'
+version = '3.4'
# The full version, including alpha/beta/rc tags.
-release = '3.3'
+release = '3.4'
# 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 64c43c1..c24ced8 100644
--- a/serial/__init__.py
+++ b/serial/__init__.py
@@ -13,7 +13,7 @@ import importlib
from serial.serialutil import *
#~ SerialBase, SerialException, to_bytes, iterbytes
-__version__ = '3.3'
+__version__ = '3.4'
VERSION = __version__