From 81dda0a191d923a8b2627c52cb778aba24d279d7 Mon Sep 17 00:00:00 2001 From: Ford Peprah Date: Tue, 18 Dec 2018 17:28:58 -0800 Subject: [PATCH] Draft 0.1.3 release --- CHANGELOG.md | 7 +++++++ pylink/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f14d35e..a885b7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ 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/). +## [0.1.3] + +### Changed +- @michalfita: Fixed handling for DLL in 64-bit Python instances: on 64-bit + Windows platforms running 64-bit Python, the 32-bit DLL was always being + loaded; now the 64-bit DLL will be loaded instead. + ## [0.1.2] ### Changed diff --git a/pylink/__init__.py b/pylink/__init__.py index ea06c17..49a1cff 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__ = '0.1.2' +__version__ = '0.1.3' __title__ = 'pylink' __author__ = 'Square Embedded Software Team' __author_email__ = 'esw-team@squareup.com'