From 23f956db5856a93c35d0286901052b4c075e3128 Mon Sep 17 00:00:00 2001 From: Ford Peprah Date: Fri, 12 Jul 2024 13:29:40 -0400 Subject: [PATCH] Draft 1.2.1 Release --- CHANGELOG.md | 8 ++++++++ CONTRIBUTORS.md | 2 ++ pylink/__init__.py | 2 +- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 822136b..bb47e4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ 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.1] +### Fixed +- @FletcherD: Fixed a bug in `load_library()` on Linux where a 32-bit library + was being incorrectly loaded on ARM64-based Linux machines. + +### Changed +- @frogamic: Unit tests are now compatible with Python 3.12. + ## [1.2.0] ### Changed - @cpattenden-sq: Fixed bug in `flash()` where return value was being checked diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 1ebdf91..34e3639 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -21,3 +21,5 @@ In the order of appearance in the commit history: | Avinash Jois | @avi-jois | | Olivier Chanquelin | @chanqueo | | Christopher Pattenden | @cpattenden-sq | +| Dominic Shelton | @frogamic | +| Fletcher D | @FletcherD | diff --git a/pylink/__init__.py b/pylink/__init__.py index 7cd0b1c..7e895d9 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.2.0' +__version__ = '1.2.1' __title__ = 'pylink' __author__ = 'Square Embedded Software Team' __author_email__ = 'esw-team@squareup.com'