Skip to content

Commit

Permalink
Fix zipconf.h for version number with missing third component.
Browse files Browse the repository at this point in the history
Fixes issue #455.
  • Loading branch information
dillof committed Sep 19, 2024
1 parent 0f584ca commit 9c8b818
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 5 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit 9c8b818

Please sign in to comment.