From b43a02111763a2872ee7d841531975c30d256e98 Mon Sep 17 00:00:00 2001 From: Ford Peprah Date: Fri, 28 Jul 2023 12:03:04 -0400 Subject: [PATCH] Draft 1.2.0 Release --- CHANGELOG.md | 6 ++++++ CONTRIBUTORS.md | 1 + pylink/__init__.py | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2496387..822136b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [1.2.0] +### Changed +- @cpattenden-sq: Fixed bug in `flash()` where return value was being checked + against a `void` function; would lead to exceptions being raised + unexpectedly. + ## [1.1.0] ### Added - @chanqueo: Added `use_tmpcpy` field to constructor for `JLink` and `Library` diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 9fe221f..1ebdf91 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -20,3 +20,4 @@ In the order of appearance in the commit history: | Curtis | @CurtisHx | | Avinash Jois | @avi-jois | | Olivier Chanquelin | @chanqueo | +| Christopher Pattenden | @cpattenden-sq | diff --git a/pylink/__init__.py b/pylink/__init__.py index 3c59f41..7cd0b1c 100644 --- a/pylink/__init__.py +++ b/pylink/__init__.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '1.1.0' +__version__ = '1.2.0' __title__ = 'pylink' __author__ = 'Square Embedded Software Team' __author_email__ = 'esw-team@squareup.com'