From bafa435c8cbd13cb87f86901bc54659903357d0f Mon Sep 17 00:00:00 2001 From: Aohan Dang Date: Tue, 27 Aug 2024 09:50:02 -0400 Subject: [PATCH] Release 1.8.1 --- CHANGELOG.md | 4 ++++ delvewheel/_version.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0830b81..a860fc1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.8.1 (_27 August 2024_) +- To improve performance during name mangling, fix the PE checksum only if the checksum existed previously. +- Require `pefile` >= 2024.8.26 and make the changes necessary to work with this version of `pefile`. + ## 1.8.0 (_16 August 2024_) - Improve performance when the `.load-order` file is used for Python <= 3.7 or Conda Python <= 3.9. - Warn if the vendored Microsoft Visual C++ runtime DLLs are too old. These DLLs do not provide forward compatibility, and compatibility issues may result if the vendored Microsoft Visual C++ runtime DLLs are older than those that the application was built against. diff --git a/delvewheel/_version.py b/delvewheel/_version.py index b280975..e8b6b09 100644 --- a/delvewheel/_version.py +++ b/delvewheel/_version.py @@ -1 +1 @@ -__version__ = '1.8.0' +__version__ = '1.8.1'