summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Liechti <cliechti@gmx.net>2016-01-11 23:48:41 +0100
committerChris Liechti <cliechti@gmx.net>2016-01-11 23:48:41 +0100
commit91dc087bd9cb78124c5e005488f934600fef26d2 (patch)
tree35e41b18d861ff53994dbb49bab774b93125f564
parent656d6f0245f339306649548c63791d34cdf67ce6 (diff)
downloadpyserial-git-91dc087bd9cb78124c5e005488f934600fef26d2.tar.gz
prepare release 3.0.1v3.0.1
-rw-r--r--CHANGES.rst12
-rw-r--r--documentation/conf.py2
-rw-r--r--serial/__init__.py4
-rw-r--r--serial/tools/list_ports_windows.py2
4 files changed, 16 insertions, 4 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index cac68f2..bf830b5 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -579,3 +579,15 @@ Bugfixes (win32):
- [#49] change exception type in case SetCommState fails
- [#50] fixed issue with 0 timeout on windows 10
+
+Version 3.0.1 2016-01-11
+--------------------------
+
+- special case for FDTIBUS in list_ports on win32
+
+Bugfixes:
+
+- ``Serial`` keyword arguments, more on backward compatibility, fix #55
+- list_ports: return name if product is None, fix for #54
+- port_publisher: restore some sorting of ports
+
diff --git a/documentation/conf.py b/documentation/conf.py
index c4c1c1d..1d6fd65 100644
--- a/documentation/conf.py
+++ b/documentation/conf.py
@@ -47,7 +47,7 @@ copyright = u'2001-2015, Chris Liechti'
# The short X.Y version.
version = '3.0'
# The full version, including alpha/beta/rc tags.
-release = '3.0'
+release = '3.0.1'
# 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 ef5fff2..b206333 100644
--- a/serial/__init__.py
+++ b/serial/__init__.py
@@ -3,7 +3,7 @@
# This is a wrapper module for different platform implementations
#
# This file is part of pySerial. https://github.com/pyserial/pyserial
-# (C) 2001-2015 Chris Liechti <cliechti@gmx.net>
+# (C) 2001-2016 Chris Liechti <cliechti@gmx.net>
#
# SPDX-License-Identifier: BSD-3-Clause
@@ -13,7 +13,7 @@ import sys
from serial.serialutil import *
#~ SerialBase, SerialException, to_bytes, iterbytes
-VERSION = '3.0'
+VERSION = '3.0.1'
if sys.platform == 'cli':
from serial.serialcli import Serial
diff --git a/serial/tools/list_ports_windows.py b/serial/tools/list_ports_windows.py
index 86a5f86..03eab09 100644
--- a/serial/tools/list_ports_windows.py
+++ b/serial/tools/list_ports_windows.py
@@ -4,7 +4,7 @@
# and hardware information.
#
# This file is part of pySerial. https://github.com/pyserial/pyserial
-# (C) 2001-2015 Chris Liechti <cliechti@gmx.net>
+# (C) 2001-2016 Chris Liechti <cliechti@gmx.net>
#
# SPDX-License-Identifier: BSD-3-Clause