From a0bbbb4ebca85ee498fadb53ebd0dba63e498499 Mon Sep 17 00:00:00 2001 From: Ford Peprah Date: Tue, 9 May 2023 11:57:28 -0400 Subject: [PATCH] Draft 1.1.0 Release --- CHANGELOG.md | 14 ++++++++++++++ CONTRIBUTORS.md | 3 +++ pylink/__init__.py | 2 +- 3 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7501dbc..2496387 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,20 @@ 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.1.0] +### Added +- @chanqueo: Added `use_tmpcpy` field to constructor for `JLink` and `Library` + instances to workaround temporary files not been cleaned up; a future patch + will change the default behaviour based on the version of the SDK. By + default, temporary files are used for the SDK binary. + +### Changed +- @curtishx: Changed decorator on `set_reset_strategy()` from + `@connection_required` to `@open_required`. + +### Removed +- @avi-jois: Removed dependency on `future`. + ## [1.0.0] ### Changed diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 0106e29..9fe221f 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -17,3 +17,6 @@ In the order of appearance in the commit history: | Chris Duf | @dottspina | | Bora Özgen | @boraozgen | | Marco Nilsson | @denravonska | +| Curtis | @CurtisHx | +| Avinash Jois | @avi-jois | +| Olivier Chanquelin | @chanqueo | diff --git a/pylink/__init__.py b/pylink/__init__.py index 46afe0b..3c59f41 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.0.0' +__version__ = '1.1.0' __title__ = 'pylink' __author__ = 'Square Embedded Software Team' __author_email__ = 'esw-team@squareup.com'