summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Liechti <cliechti@gmx.net>2015-10-20 23:22:25 +0200
committerChris Liechti <cliechti@gmx.net>2015-10-20 23:22:25 +0200
commitcc654c80b8a432459925618dc2d7fc6447cb12dc (patch)
treec7b2f94f42d05090e3ee78ecd75f73bbd55a7d21
parentb15dc058d8b77637727df6ec61683b3bc871b332 (diff)
downloadpyserial-git-cc654c80b8a432459925618dc2d7fc6447cb12dc.tar.gz
prepare V3.0b1v3.0b1
-rw-r--r--CHANGES.rst7
-rw-r--r--documentation/conf.py2
-rw-r--r--serial/__init__.py2
3 files changed, 8 insertions, 3 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 724b458..3a929d7 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -543,11 +543,16 @@ Bugfixes (cli):
- [Bug pyserial:159] write() in serialcli.py not working with IronPython 2.7.4
-Version 3.0a1 xxxx-xx-xx
+Version 3.0b1 2015-10-19
--------------------------
- list_ports: add ``vid``, ``pid``, ``serial_number``, ``product``,
``manufacturer`` and ``location`` attribute for USB devices.
- list_ports: update OSX implementation.
- list_ports: Raspberry Pi: internal port is found.
+- serial_for_url: fix import (multiple packages in list)
+- threaded: added new module implementing a reader thread
+- tweak examples/wx*
+- posix: add experimental implementation ``VTIMESerial``
+- new URL handler ``alt://`` to select alternative implementations
diff --git a/documentation/conf.py b/documentation/conf.py
index d1c6717..a290a3c 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.x'
+release = '3.0b1'
# 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 0839b8b..482aba0 100644
--- a/serial/__init__.py
+++ b/serial/__init__.py
@@ -13,7 +13,7 @@ import sys
from serial.serialutil import *
#~ SerialBase, SerialException, to_bytes, iterbytes
-VERSION = '3.0a1'
+VERSION = '3.0b1'
if sys.platform == 'cli':
from serial.serialcli import Serial