From 323667bf82758e7fba24d88262c1dd3d1f85b2c6 Mon Sep 17 00:00:00 2001 From: Dan Watson Date: Thu, 9 May 2024 14:48:24 -0400 Subject: [PATCH] Release 0.7.0 --- CHANGELOG.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ef6f2d1..2d5b880 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,22 +1,23 @@ -## 0.7.0 (in development) +## 0.7.0 (2024-05-09) * Switched to [scikit-build-core](https://github.com/scikit-build/scikit-build-core) and CMake (#42, #43) - huge thanks to @henryiii * Raise `ValueError` instead of `DeflateError` on invalid gzip data +* Lots of internal refactoring -## 0.6.1 +## 0.6.1 (2024-05-06) * Fixed broken wheels on macOS arm64 platforms -## 0.6.0 (yanked) +## 0.6.0 (2024-04-20, yanked) * Require `originalsize` argument for `deflate_decompress` and `zlib_decompress` * Updated bundled libdeflate to v1.20 -## 0.5.0 +## 0.5.0 (2023-12-20) * Added raw DEFLATE functionality from libdeflate (#39) * Added zlib functionality from libdeflate (#2) @@ -24,7 +25,7 @@ * Test on and build wheels for Python 3.12 (#40) -## 0.4.0 +## 0.4.0 (2023-06-29) * Eliminate unnecessary allocation/copy in compression and decompression (#10) * add DeflateError object to module, fixes related ImportError (#14) @@ -37,14 +38,14 @@ * add tests (using pytest), flake8 linter, CI via github actions (#16, #13) -## 0.3.0 +## 0.3.0 (2020-12-14) * Compile libdeflate directly instead of trying to build/link it * Actual working Windows binary wheels * Change the default compression level to 6 to match zlib -## 0.2.0 +## 0.2.0 (2020-11-19) * Compile libdeflate with `-fPIC` (#5) * Automatically build wheels for macOS, Linux, and Windows (#3) @@ -52,6 +53,6 @@ * Experimental support for building a universal library on Apple Silicon -## 0.1.0 +## 0.1.0 (2020-06-17) * Initial release