From 9c8b818a1de143a4a8ee445351fb8f92115e33e1 Mon Sep 17 00:00:00 2001 From: Dieter Baron Date: Thu, 19 Sep 2024 13:38:15 +0200 Subject: [PATCH] Fix zipconf.h for version number with missing third component. Fixes issue #455. --- CMakeLists.txt | 6 +++++- NEWS.md | 4 ++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e81d842e..8d019b9f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,9 +6,13 @@ if (${CMAKE_VERSION} VERSION_LESS "3.17.0") endif() project(libzip - VERSION 1.11 + VERSION 1.11.1 LANGUAGES C) +if(NOT libzip_VERSION_PATCH) + set(libzip_VERSION_PATCH 0) +endif() + option(ENABLE_COMMONCRYPTO "Enable use of CommonCrypto" ON) option(ENABLE_GNUTLS "Enable use of GnuTLS" ON) option(ENABLE_MBEDTLS "Enable use of mbed TLS" ON) diff --git a/NEWS.md b/NEWS.md index 176cbbdc..614e4de4 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,7 @@ +# 1.11.1 [2024-09-19] + +* Fix zipconf.h for version number with missing third component. + # 1.11 [2024-09-19] * Stop searching after finding acceptable central directory, even if it contains inconsistencies.