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.