Skip to content

Commit

Permalink
Update to libzip-1.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kiyolee committed Aug 3, 2022
1 parent 7542467 commit 45c88c9
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 7 deletions.
9 changes: 9 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
1.9.2 [2022-06-28]

* Fix version number in header file.

1.9.1 [2022-06-28]
===================

* Fix `zip_file_is_seekable()`.

1.9.0 [2022-06-13]
==================

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

libzip Windows build with Visual Studio.

This version is libzip-1.9.1.
This version is libzip-1.9.2.

To build, simply open the required solution file, and
you know how to use Visual Studio, right?
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion distfiles/download.url
Original file line number Diff line number Diff line change
@@ -1 +1 @@
https://github.com/nih-at/libzip/releases/download/v1.9.1/libzip-1.9.1.tar.xz
https://github.com/nih-at/libzip/releases/download/v1.9.2/libzip-1.9.2.tar.xz
Binary file removed distfiles/libzip-1.9.1.tar.xz
Binary file not shown.
Binary file added distfiles/libzip-1.9.2.tar.xz
Binary file not shown.
2 changes: 1 addition & 1 deletion win32/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,6 @@
#define HAVE_SHARED
/* END DEFINES */
#define PACKAGE "libzip"
#define VERSION "1.9.1"
#define VERSION "1.9.2"

#endif /* HAD_CONFIG_H */
4 changes: 2 additions & 2 deletions win32/libzip.rc
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#include <winver.h>

#define LIBZIP_VERSION_STR "1.9.1"
#define LIBZIP_VERSION_STR "1.9.2"
#define LIBZIP_VER_MAJOR 1
#define LIBZIP_VER_MINOR 9
#define LIBZIP_VER_REVISION 1
#define LIBZIP_VER_REVISION 2

#ifdef GCC_WINDRES
VS_VERSION_INFO VERSIONINFO
Expand Down
4 changes: 2 additions & 2 deletions win32/zipconf.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
based on ../cmake-zipconf.h.in.
*/

#define LIBZIP_VERSION "1.9.1"
#define LIBZIP_VERSION "1.9.2"
#define LIBZIP_VERSION_MAJOR 1
#define LIBZIP_VERSION_MINOR 9
#define LIBZIP_VERSION_MICRO 1
#define LIBZIP_VERSION_MICRO 2

/* #undef ZIP_STATIC */

Expand Down

0 comments on commit 45c88c9

Please sign in to comment.