From 210b09d9d2d0f4c0bbc64f92ad45c1ac53598fec Mon Sep 17 00:00:00 2001 From: Dieter Baron Date: Wed, 23 Aug 2023 12:55:23 +0200 Subject: [PATCH] Prepare for release. --- CMakeLists.txt | 2 +- NEWS.md | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cdb3ec948..b2e77241a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ if (${CMAKE_VERSION} VERSION_LESS "3.17.0") endif() project(libzip - VERSION 1.10.0 + VERSION 1.10.1 LANGUAGES C) option(ENABLE_COMMONCRYPTO "Enable use of CommonCrypto" ON) diff --git a/NEWS.md b/NEWS.md index 2d8f65acb..e117422d8 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,6 +1,7 @@ -# 1.10.1 [Unreleased] +# 1.10.1 [2023-08-23] * Add `ZIP_LENGTH_TO_END` and `ZIP_LENGTH_UNCHECKED`. Unless `ZIP_LENGTH_UNCHECKED` is used as `length`, it is an error for a file to shrink between the time when the source is created and when its data is read. +* Fix test on Windows. # 1.10.0 [2023-06-23]