summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Liechti <cliechti@gmx.net>2020-09-21 03:10:01 +0200
committerChris Liechti <cliechti@gmx.net>2020-09-21 03:10:01 +0200
commitd867871e6aa333014a77498b4ac96fdd1d3bf1d8 (patch)
tree86b2dcd4af55a802dabdde7a294d9f82b6d4c9b6
parent6ae64c15c5722683f52e33930577d54f83446be9 (diff)
downloadpyserial-git-d867871e6aa333014a77498b4ac96fdd1d3bf1d8.tar.gz
chore: beta release 3.5b0v3.5b0
-rw-r--r--CHANGES.rst8
-rw-r--r--serial/__init__.py2
2 files changed, 6 insertions, 4 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 4515692..5a4b502 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -736,11 +736,12 @@ Bugfixes (posix):
- [#228] fix: port_publisher typo
-Version 3.5 2020-xx-xx
+Version 3.5b0 2020-09-21
------------------------
New Features:
-- [#411] Add a backend for Silicon Labs CP2110/4 HID-to-UART bridge. (depends on `hid` module)
+- [#411] Add a backend for Silicon Labs CP2110/4 HID-to-UART bridge.
+ (depends on `hid` module)
Improvements:
@@ -775,7 +776,8 @@ Bugfixes:
- [#324] miniterm: Fix miniterm constructor exit_character and menu_character
- [#326] miniterm: use exclusive access for native serial ports by default
- [#497] miniterm: fix double use of CTRL-T + s use z for suspend instead
-- [#443, #444] examples: refactor wx example, use Bind to avoid deprecated warnings, IsChecked, unichr
+- [#443, #444] examples: refactor wx example, use Bind to avoid deprecated
+ warnings, IsChecked, unichr
Bugfixes (posix):
diff --git a/serial/__init__.py b/serial/__init__.py
index 6160c8b..e6b64cd 100644
--- a/serial/__init__.py
+++ b/serial/__init__.py
@@ -15,7 +15,7 @@ import importlib
from serial.serialutil import *
#~ SerialBase, SerialException, to_bytes, iterbytes
-__version__ = '3.4.1'
+__version__ = '3.5b0'
VERSION = __version__