WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 9c8b818

Browse files
committed
Fix zipconf.h for version number with missing third component.
Fixes issue #455.
1 parent 0f584ca commit 9c8b818

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

CMakeLists.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,13 @@ if (${CMAKE_VERSION} VERSION_LESS "3.17.0")
66
endif()
77

88
project(libzip
9-
VERSION 1.11
9+
VERSION 1.11.1
1010
LANGUAGES C)
1111

12+
if(NOT libzip_VERSION_PATCH)
13+
set(libzip_VERSION_PATCH 0)
14+
endif()
15+
1216
option(ENABLE_COMMONCRYPTO "Enable use of CommonCrypto" ON)
1317
option(ENABLE_GNUTLS "Enable use of GnuTLS" ON)
1418
option(ENABLE_MBEDTLS "Enable use of mbed TLS" ON)

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 1.11.1 [2024-09-19]
2+
3+
* Fix zipconf.h for version number with missing third component.
4+
15
# 1.11 [2024-09-19]
26

37
* Stop searching after finding acceptable central directory, even if it contains inconsistencies.

0 commit comments

Comments
 (0)