From 6e80f080261ccd319cafab7c2aa47d103492c54a Mon Sep 17 00:00:00 2001 From: Brian Thorne Date: Mon, 13 May 2019 13:24:28 +1000 Subject: [PATCH 1/3] Set version to "3.2.0" --- CHANGELOG.txt | 3 ++- can/__init__.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index c7f90b080..ce66d8e4d 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -6,7 +6,7 @@ Major features -------------- * FD support added for Pcan by @bmeisels with input from - @markupsp, @christiansandberg & @felixdivo in PR #537 + @markupspi, @christiansandberg & @felixdivo in PR #537 Other notable changes --------------------- @@ -14,6 +14,7 @@ Other notable changes * #532 Support has been removed for Python 3.4 * #533 BusState is now an enum. * #535 This release should automatically be published to PyPi by travis. +* #577 Travis-ci now uses stages. * #548 A guide has been added for new io formats. * #550 Finish moving from nose to pytest. * #558 Fix installation on Windows. diff --git a/can/__init__.py b/can/__init__.py index acf440645..a612363ae 100644 --- a/can/__init__.py +++ b/can/__init__.py @@ -8,7 +8,7 @@ import logging -__version__ = "3.2.0b0" +__version__ = "3.2.0" log = logging.getLogger('can') From 6bbafc1c2f00a5e64b884f75efc4e5cb5ab5b586 Mon Sep 17 00:00:00 2001 From: Brian Thorne Date: Wed, 15 May 2019 14:14:30 +1000 Subject: [PATCH 2/3] Add note about supported python versions --- CHANGELOG.txt | 4 +++- README.rst | 11 ++++++++++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index ce66d8e4d..59d15b52a 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -7,11 +7,13 @@ Major features * FD support added for Pcan by @bmeisels with input from @markupspi, @christiansandberg & @felixdivo in PR #537 +* This is the last version of python-can which will support Python 2.7 + and Python 3.5. Support has been removed for Python 3.4 in this + release in PR #532 Other notable changes --------------------- -* #532 Support has been removed for Python 3.4 * #533 BusState is now an enum. * #535 This release should automatically be published to PyPi by travis. * #577 Travis-ci now uses stages. diff --git a/README.rst b/README.rst index 360d420b2..affcde831 100644 --- a/README.rst +++ b/README.rst @@ -37,7 +37,16 @@ Python developers; providing common abstractions to different hardware devices, and a suite of utilities for sending and receiving messages on a can bus. -The library supports Python 2.7, Python 3.5+ as well as PyPy 2 & 3 and runs on Mac, Linux and Windows. +The library supports Python 2.7, Python 3.5+ as well as PyPy 2 & 3 and runs +on Mac, Linux and Windows. + +================== =========== +Library Version Python +------------------ ----------- + 2.x 2.6+, 3.4+ + 3.x 2.7+, 3.5+ + 4.x (expected) 3.6+ +================== =========== Features From 7268f49f4ca349464e29bc680e9e42c66e313455 Mon Sep 17 00:00:00 2001 From: Brian Thorne Date: Thu, 16 May 2019 19:06:20 +1000 Subject: [PATCH 3/3] fix typo in changlog --- CHANGELOG.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 59d15b52a..2f50dca8d 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -6,7 +6,7 @@ Major features -------------- * FD support added for Pcan by @bmeisels with input from - @markupspi, @christiansandberg & @felixdivo in PR #537 + @markuspi, @christiansandberg & @felixdivo in PR #537 * This is the last version of python-can which will support Python 2.7 and Python 3.5. Support has been removed for Python 3.4 in this release in PR #532