aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt2
-rw-r--r--ChangeLog3
-rw-r--r--Makefile.in2
-rw-r--r--README4
-rw-r--r--contrib/delphi/ZLib.pas2
-rw-r--r--contrib/dotzlib/DotZLib/UnitTests.cs2
-rw-r--r--contrib/infback9/inftree9.c4
-rw-r--r--contrib/minizip/configure.ac2
-rw-r--r--contrib/nuget/nuget.csproj2
-rw-r--r--contrib/pascal/zlibpas.pas4
-rw-r--r--contrib/zlib1-dll/CMakeLists.txt2
-rw-r--r--deflate.c2
-rw-r--r--inftrees.c4
-rw-r--r--os400/README4002
-rw-r--r--os400/zlibfixed.rpgle8
-rw-r--r--os400/zlibfree.rpgle8
-rw-r--r--qnx/package.qpg10
-rw-r--r--treebuild.xml4
-rw-r--r--win32/README-WIN32.txt4
-rw-r--r--zlib.34
-rw-r--r--zlib.h8
21 files changed, 43 insertions, 40 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index e103c409..eef01a89 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.12...3.31)
3project( 3project(
4 zlib 4 zlib
5 LANGUAGES C 5 LANGUAGES C
6 VERSION 1.3.2 6 VERSION 1.3.2.1
7 HOMEPAGE_URL "https://zlib.net/" 7 HOMEPAGE_URL "https://zlib.net/"
8 DESCRIPTION "a general-purpose lossless data-compression library") 8 DESCRIPTION "a general-purpose lossless data-compression library")
9 9
diff --git a/ChangeLog b/ChangeLog
index 312753ed..4e86c268 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,9 @@
1 1
2 ChangeLog file for zlib 2 ChangeLog file for zlib
3 3
4Changes in 1.3.2.1 (xx Feb 2026)
5-
6
4Changes in 1.3.2 (17 Feb 2026) 7Changes in 1.3.2 (17 Feb 2026)
5- Continued rewrite of CMake build [Vollstrecker] 8- Continued rewrite of CMake build [Vollstrecker]
6- Various portability improvements 9- Various portability improvements
diff --git a/Makefile.in b/Makefile.in
index bee83edf..ccb3c4f0 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -31,7 +31,7 @@ VGFMAFLAG=
31 31
32STATICLIB=libz.a 32STATICLIB=libz.a
33SHAREDLIB=libz.so 33SHAREDLIB=libz.so
34SHAREDLIBV=libz.so.1.3.2 34SHAREDLIBV=libz.so.1.3.2.1
35SHAREDLIBM=libz.so.1 35SHAREDLIBM=libz.so.1
36LIBS=$(STATICLIB) $(SHAREDLIBV) 36LIBS=$(STATICLIB) $(SHAREDLIBV)
37 37
diff --git a/README b/README
index 2b1e6f36..e28388bf 100644
--- a/README
+++ b/README
@@ -1,6 +1,6 @@
1ZLIB DATA COMPRESSION LIBRARY 1ZLIB DATA COMPRESSION LIBRARY
2 2
3zlib 1.3.2 is a general purpose data compression library. All the code is 3zlib 1.3.2.1 is a general purpose data compression library. All the code is
4thread safe (though see the FAQ for caveats). The data format used by the zlib 4thread safe (though see the FAQ for caveats). The data format used by the zlib
5library is described by RFCs (Request for Comments) 1950 to 1952 at 5library is described by RFCs (Request for Comments) 1950 to 1952 at
6https://datatracker.ietf.org/doc/html/rfc1950 (zlib format), rfc1951 (deflate 6https://datatracker.ietf.org/doc/html/rfc1950 (zlib format), rfc1951 (deflate
@@ -31,7 +31,7 @@ Mark Nelson <markn@ieee.org> wrote an article about zlib for the Jan. 1997
31issue of Dr. Dobb's Journal; a copy of the article is available at 31issue of Dr. Dobb's Journal; a copy of the article is available at
32https://zlib.net/nelson/ . 32https://zlib.net/nelson/ .
33 33
34The changes made in version 1.3.2 are documented in the file ChangeLog. 34The changes made in version 1.3.2.1 are documented in the file ChangeLog.
35 35
36Unsupported third party contributions are provided in directory contrib/ . 36Unsupported third party contributions are provided in directory contrib/ .
37 37
diff --git a/contrib/delphi/ZLib.pas b/contrib/delphi/ZLib.pas
index cda3b09e..ef9047eb 100644
--- a/contrib/delphi/ZLib.pas
+++ b/contrib/delphi/ZLib.pas
@@ -152,7 +152,7 @@ procedure DecompressToUserBuf(const InBuf: Pointer; InBytes: Integer;
152 const OutBuf: Pointer; BufSize: Integer); 152 const OutBuf: Pointer; BufSize: Integer);
153 153
154const 154const
155 zlib_version = '1.3.2'; 155 zlib_version = '1.3.2.1';
156 156
157type 157type
158 EZlibError = class(Exception); 158 EZlibError = class(Exception);
diff --git a/contrib/dotzlib/DotZLib/UnitTests.cs b/contrib/dotzlib/DotZLib/UnitTests.cs
index 2714a4b4..2de5cbeb 100644
--- a/contrib/dotzlib/DotZLib/UnitTests.cs
+++ b/contrib/dotzlib/DotZLib/UnitTests.cs
@@ -156,7 +156,7 @@ namespace DotZLibTests
156 public void Info_Version() 156 public void Info_Version()
157 { 157 {
158 Info info = new Info(); 158 Info info = new Info();
159 Assert.AreEqual("1.3.2", Info.Version); 159 Assert.AreEqual("1.3.2.1", Info.Version);
160 Assert.AreEqual(32, info.SizeOfUInt); 160 Assert.AreEqual(32, info.SizeOfUInt);
161 Assert.AreEqual(32, info.SizeOfULong); 161 Assert.AreEqual(32, info.SizeOfULong);
162 Assert.AreEqual(32, info.SizeOfPointer); 162 Assert.AreEqual(32, info.SizeOfPointer);
diff --git a/contrib/infback9/inftree9.c b/contrib/infback9/inftree9.c
index cb96cf87..bfe71889 100644
--- a/contrib/infback9/inftree9.c
+++ b/contrib/infback9/inftree9.c
@@ -9,7 +9,7 @@
9#define MAXBITS 15 9#define MAXBITS 15
10 10
11const char inflate9_copyright[] = 11const char inflate9_copyright[] =
12 " inflate9 1.3.2 Copyright 1995-2026 Mark Adler "; 12 " inflate9 1.3.2.1 Copyright 1995-2026 Mark Adler ";
13/* 13/*
14 If you use the zlib library in a product, an acknowledgment is welcome 14 If you use the zlib library in a product, an acknowledgment is welcome
15 in the documentation of your product. If for some reason you cannot 15 in the documentation of your product. If for some reason you cannot
@@ -59,7 +59,7 @@ int inflate_table9(codetype type, unsigned short FAR *lens, unsigned codes,
59 static const unsigned short lext[31] = { /* Length codes 257..285 extra */ 59 static const unsigned short lext[31] = { /* Length codes 257..285 extra */
60 128, 128, 128, 128, 128, 128, 128, 128, 129, 129, 129, 129, 60 128, 128, 128, 128, 128, 128, 128, 128, 129, 129, 129, 129,
61 130, 130, 130, 130, 131, 131, 131, 131, 132, 132, 132, 132, 61 130, 130, 130, 130, 131, 131, 131, 131, 132, 132, 132, 132,
62 133, 133, 133, 133, 144, 199, 75}; 62 133, 133, 133, 133, 144, 68, 193};
63 static const unsigned short dbase[32] = { /* Distance codes 0..31 base */ 63 static const unsigned short dbase[32] = { /* Distance codes 0..31 base */
64 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 64 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49,
65 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 65 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073,
diff --git a/contrib/minizip/configure.ac b/contrib/minizip/configure.ac
index b739fa0c..9be42628 100644
--- a/contrib/minizip/configure.ac
+++ b/contrib/minizip/configure.ac
@@ -1,7 +1,7 @@
1# -*- Autoconf -*- 1# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script. 2# Process this file with autoconf to produce a configure script.
3 3
4AC_INIT([minizip], [1.3.2], [bugzilla.redhat.com]) 4AC_INIT([minizip], [1.3.2.1], [bugzilla.redhat.com])
5AC_CONFIG_SRCDIR([minizip.c]) 5AC_CONFIG_SRCDIR([minizip.c])
6AM_INIT_AUTOMAKE([foreign]) 6AM_INIT_AUTOMAKE([foreign])
7LT_INIT 7LT_INIT
diff --git a/contrib/nuget/nuget.csproj b/contrib/nuget/nuget.csproj
index ead9a205..e8972282 100644
--- a/contrib/nuget/nuget.csproj
+++ b/contrib/nuget/nuget.csproj
@@ -7,7 +7,7 @@
7 <PackageId Condition="$([MSBuild]::IsOSPlatform('Linux'))">$(PackageId).linux</PackageId> 7 <PackageId Condition="$([MSBuild]::IsOSPlatform('Linux'))">$(PackageId).linux</PackageId>
8 <PackageId Condition="$([MSBuild]::IsOSPlatform('OSX'))">$(PackageId).osx</PackageId> 8 <PackageId Condition="$([MSBuild]::IsOSPlatform('OSX'))">$(PackageId).osx</PackageId>
9 <Copyright>(C) 1995-2026 Jean-loup Gailly and Mark Adler</Copyright> 9 <Copyright>(C) 1995-2026 Jean-loup Gailly and Mark Adler</Copyright>
10 <version>1.3.2</version> 10 <version>1.3.2.1</version>
11 <PackageDescription>NuGet Package for consuming native builds of zlib into .NET without complexity.</PackageDescription> 11 <PackageDescription>NuGet Package for consuming native builds of zlib into .NET without complexity.</PackageDescription>
12 <PackageReadmeFile>README</PackageReadmeFile> 12 <PackageReadmeFile>README</PackageReadmeFile>
13 <!-- 13 <!--
diff --git a/contrib/pascal/zlibpas.pas b/contrib/pascal/zlibpas.pas
index 603ff82e..a05b77d8 100644
--- a/contrib/pascal/zlibpas.pas
+++ b/contrib/pascal/zlibpas.pas
@@ -10,8 +10,8 @@ unit zlibpas;
10interface 10interface
11 11
12const 12const
13 ZLIB_VERSION = '1.3.2'; 13 ZLIB_VERSION = '1.3.2.1';
14 ZLIB_VERNUM = $12a0; 14 ZLIB_VERNUM = $1321;
15 15
16type 16type
17 alloc_func = function(opaque: Pointer; items, size: Integer): Pointer; 17 alloc_func = function(opaque: Pointer; items, size: Integer): Pointer;
diff --git a/contrib/zlib1-dll/CMakeLists.txt b/contrib/zlib1-dll/CMakeLists.txt
index 86625123..26a5bb67 100644
--- a/contrib/zlib1-dll/CMakeLists.txt
+++ b/contrib/zlib1-dll/CMakeLists.txt
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.12...3.31)
3project( 3project(
4 zlib1-dll 4 zlib1-dll
5 LANGUAGES C 5 LANGUAGES C
6 VERSION 1.3.2 6 VERSION 1.3.2.1
7 HOMEPAGE_URL "https://zlib.net/" 7 HOMEPAGE_URL "https://zlib.net/"
8 DESCRIPTION "zlib1.dll is the legacy DLL with zlib and minizip") 8 DESCRIPTION "zlib1.dll is the legacy DLL with zlib and minizip")
9 9
diff --git a/deflate.c b/deflate.c
index d7d2c7c1..a5be5e69 100644
--- a/deflate.c
+++ b/deflate.c
@@ -52,7 +52,7 @@
52#include "deflate.h" 52#include "deflate.h"
53 53
54const char deflate_copyright[] = 54const char deflate_copyright[] =
55 " deflate 1.3.2 Copyright 1995-2026 Jean-loup Gailly and Mark Adler "; 55 " deflate 1.3.2.1 Copyright 1995-2026 Jean-loup Gailly and Mark Adler ";
56/* 56/*
57 If you use the zlib library in a product, an acknowledgment is welcome 57 If you use the zlib library in a product, an acknowledgment is welcome
58 in the documentation of your product. If for some reason you cannot 58 in the documentation of your product. If for some reason you cannot
diff --git a/inftrees.c b/inftrees.c
index dcbc64e0..99d8d773 100644
--- a/inftrees.c
+++ b/inftrees.c
@@ -23,7 +23,7 @@
23#define MAXBITS 15 23#define MAXBITS 15
24 24
25const char inflate_copyright[] = 25const char inflate_copyright[] =
26 " inflate 1.3.2 Copyright 1995-2026 Mark Adler "; 26 " inflate 1.3.2.1 Copyright 1995-2026 Mark Adler ";
27/* 27/*
28 If you use the zlib library in a product, an acknowledgment is welcome 28 If you use the zlib library in a product, an acknowledgment is welcome
29 in the documentation of your product. If for some reason you cannot 29 in the documentation of your product. If for some reason you cannot
@@ -71,7 +71,7 @@ int ZLIB_INTERNAL inflate_table(codetype type, unsigned short FAR *lens,
71 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0}; 71 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0};
72 static const unsigned short lext[31] = { /* Length codes 257..285 extra */ 72 static const unsigned short lext[31] = { /* Length codes 257..285 extra */
73 16, 16, 16, 16, 16, 16, 16, 16, 17, 17, 17, 17, 18, 18, 18, 18, 73 16, 16, 16, 16, 16, 16, 16, 16, 17, 17, 17, 17, 18, 18, 18, 18,
74 19, 19, 19, 19, 20, 20, 20, 20, 21, 21, 21, 21, 16, 199, 75}; 74 19, 19, 19, 19, 20, 20, 20, 20, 21, 21, 21, 21, 16, 68, 193};
75 static const unsigned short dbase[32] = { /* Distance codes 0..29 base */ 75 static const unsigned short dbase[32] = { /* Distance codes 0..29 base */
76 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 76 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193,
77 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 77 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145,
diff --git a/os400/README400 b/os400/README400
index 9314a687..8164f787 100644
--- a/os400/README400
+++ b/os400/README400
@@ -1,4 +1,4 @@
1 ZLIB version 1.3.2 for OS/400 installation instructions 1 ZLIB version 1.3.2.1 for OS/400 installation instructions
2 2
31) Download and unpack the zlib tarball to some IFS directory. 31) Download and unpack the zlib tarball to some IFS directory.
4 (i.e.: /path/to/the/zlib/ifs/source/directory) 4 (i.e.: /path/to/the/zlib/ifs/source/directory)
diff --git a/os400/zlibfixed.rpgle b/os400/zlibfixed.rpgle
index 75060f30..832960d3 100644
--- a/os400/zlibfixed.rpgle
+++ b/os400/zlibfixed.rpgle
@@ -1,7 +1,7 @@
1 * ZLIB.INC - Interface to the general purpose compression library 1 * ZLIB.INC - Interface to the general purpose compression library
2 * 2 *
3 * ILE RPG400 version by Patrick Monnerat, DATASPHERE. 3 * ILE RPG400 version by Patrick Monnerat, DATASPHERE.
4 * Version 1.3.2 4 * Version 1.3.2.1
5 * 5 *
6 * 6 *
7 * WARNING: 7 * WARNING:
@@ -22,14 +22,14 @@
22 * 22 *
23 * Versioning information. 23 * Versioning information.
24 * 24 *
25 D ZLIB_VERSION C '1.3.2' 25 D ZLIB_VERSION C '1.3.2.1'
26 D ZLIB_VERNUM C X'1320' 26 D ZLIB_VERNUM C X'1321'
27 D ZLIB_VER_MAJOR C 1 27 D ZLIB_VER_MAJOR C 1
28 D ZLIB_VER_MINOR C 3 28 D ZLIB_VER_MINOR C 3
29 D ZLIB_VER_REVISION... 29 D ZLIB_VER_REVISION...
30 D C 2 30 D C 2
31 D ZLIB_VER_SUBREVISION... 31 D ZLIB_VER_SUBREVISION...
32 D C 0 32 D C 1
33 * 33 *
34 * Other equates. 34 * Other equates.
35 * 35 *
diff --git a/os400/zlibfree.rpgle b/os400/zlibfree.rpgle
index b35c4680..1f027dac 100644
--- a/os400/zlibfree.rpgle
+++ b/os400/zlibfree.rpgle
@@ -2,7 +2,7 @@
2// ZLIB.INC - Interface to the general purpose compression library 2// ZLIB.INC - Interface to the general purpose compression library
3 3
4// ILE RPG400 version by Patrick Monnerat, DATASPHERE. 4// ILE RPG400 version by Patrick Monnerat, DATASPHERE.
5// Version 1.3.2 5// Version 1.3.2.1
6 6
7 7
8// WARNING: 8// WARNING:
@@ -23,12 +23,12 @@
23 23
24// Versioning information. 24// Versioning information.
25 25
26Dcl-C ZLIB_VERSION '1.3.2'; 26Dcl-C ZLIB_VERSION '1.3.2.1';
27Dcl-C ZLIB_VERNUM X'1320'; 27Dcl-C ZLIB_VERNUM X'1321';
28Dcl-C ZLIB_VER_MAJOR 1; 28Dcl-C ZLIB_VER_MAJOR 1;
29Dcl-C ZLIB_VER_MINOR 3; 29Dcl-C ZLIB_VER_MINOR 3;
30Dcl-C ZLIB_VER_REVISION 2; 30Dcl-C ZLIB_VER_REVISION 2;
31Dcl-C ZLIB_VER_SUBREVISION 0; 31Dcl-C ZLIB_VER_SUBREVISION 1;
32 32
33// Other equates. 33// Other equates.
34 34
diff --git a/qnx/package.qpg b/qnx/package.qpg
index 82d65f4b..baf4196e 100644
--- a/qnx/package.qpg
+++ b/qnx/package.qpg
@@ -25,10 +25,10 @@
25 <QPG:Files> 25 <QPG:Files>
26 <QPG:Add file="../zconf.h" install="/opt/include/" user="root:sys" permission="644"/> 26 <QPG:Add file="../zconf.h" install="/opt/include/" user="root:sys" permission="644"/>
27 <QPG:Add file="../zlib.h" install="/opt/include/" user="root:sys" permission="644"/> 27 <QPG:Add file="../zlib.h" install="/opt/include/" user="root:sys" permission="644"/>
28 <QPG:Add file="../libz.so.1.3.2" install="/opt/lib/" user="root:bin" permission="644"/> 28 <QPG:Add file="../libz.so.1.3.2.1" install="/opt/lib/" user="root:bin" permission="644"/>
29 <QPG:Add file="libz.so" install="/opt/lib/" component="dev" filetype="symlink" linkto="libz.so.1.3.2"/> 29 <QPG:Add file="libz.so" install="/opt/lib/" component="dev" filetype="symlink" linkto="libz.so.1.3.2.1"/>
30 <QPG:Add file="libz.so.1" install="/opt/lib/" filetype="symlink" linkto="libz.so.1.3.2"/> 30 <QPG:Add file="libz.so.1" install="/opt/lib/" filetype="symlink" linkto="libz.so.1.3.2.1"/>
31 <QPG:Add file="../libz.so.1.3.2" install="/opt/lib/" component="slib"/> 31 <QPG:Add file="../libz.so.1.3.2.1" install="/opt/lib/" component="slib"/>
32 </QPG:Files> 32 </QPG:Files>
33 33
34 <QPG:PackageFilter> 34 <QPG:PackageFilter>
@@ -63,7 +63,7 @@
63 </QPM:ProductDescription> 63 </QPM:ProductDescription>
64 64
65 <QPM:ReleaseDescription> 65 <QPM:ReleaseDescription>
66 <QPM:ReleaseVersion>1.3.2</QPM:ReleaseVersion> 66 <QPM:ReleaseVersion>1.3.2.1</QPM:ReleaseVersion>
67 <QPM:ReleaseUrgency>Medium</QPM:ReleaseUrgency> 67 <QPM:ReleaseUrgency>Medium</QPM:ReleaseUrgency>
68 <QPM:ReleaseStability>Stable</QPM:ReleaseStability> 68 <QPM:ReleaseStability>Stable</QPM:ReleaseStability>
69 <QPM:ReleaseNoteMinor></QPM:ReleaseNoteMinor> 69 <QPM:ReleaseNoteMinor></QPM:ReleaseNoteMinor>
diff --git a/treebuild.xml b/treebuild.xml
index cd7d7a58..448aed3b 100644
--- a/treebuild.xml
+++ b/treebuild.xml
@@ -1,6 +1,6 @@
1<?xml version="1.0" ?> 1<?xml version="1.0" ?>
2<package name="zlib" version="1.3.2"> 2<package name="zlib" version="1.3.2.1">
3 <library name="zlib" dlversion="1.3.2" dlname="z"> 3 <library name="zlib" dlversion="1.3.2.1" dlname="z">
4 <property name="description"> zip compression library </property> 4 <property name="description"> zip compression library </property>
5 <property name="include-target-dir" value="$(@PACKAGE/install-includedir)" /> 5 <property name="include-target-dir" value="$(@PACKAGE/install-includedir)" />
6 6
diff --git a/win32/README-WIN32.txt b/win32/README-WIN32.txt
index 48c9120a..ea08af98 100644
--- a/win32/README-WIN32.txt
+++ b/win32/README-WIN32.txt
@@ -1,6 +1,6 @@
1ZLIB DATA COMPRESSION LIBRARY 1ZLIB DATA COMPRESSION LIBRARY
2 2
3zlib 1.3.2 is a general purpose data compression library. All the code is 3zlib 1.3.2.1 is a general purpose data compression library. All the code is
4thread safe. The data format used by the zlib library is described by RFCs 4thread safe. The data format used by the zlib library is described by RFCs
5(Request for Comments) 1950 to 1952 in the files 5(Request for Comments) 1950 to 1952 in the files
6https://datatracker.ietf.org/doc/html/rfc1951 (zlib format), rfc1951.txt 6https://datatracker.ietf.org/doc/html/rfc1951 (zlib format), rfc1951.txt
@@ -22,7 +22,7 @@ asking for help.
22 22
23Manifest: 23Manifest:
24 24
25The package zlib-1.3.2-win32-x86.zip will contain the following files: 25The package zlib-1.3.2.1-win32-x86.zip will contain the following files:
26 26
27 README-WIN32.txt This document 27 README-WIN32.txt This document
28 ChangeLog Changes since previous zlib packages 28 ChangeLog Changes since previous zlib packages
diff --git a/zlib.3 b/zlib.3
index 70d5f180..7dbae943 100644
--- a/zlib.3
+++ b/zlib.3
@@ -1,4 +1,4 @@
1.TH ZLIB 3 "17 Feb 2026" 1.TH ZLIB 3 "xx Feb 2026"
2.SH NAME 2.SH NAME
3zlib \- compression/decompression library 3zlib \- compression/decompression library
4.SH SYNOPSIS 4.SH SYNOPSIS
@@ -105,7 +105,7 @@ before asking for help.
105Send questions and/or comments to zlib@gzip.org, 105Send questions and/or comments to zlib@gzip.org,
106or (for the Windows DLL version) to Gilles Vollant (info@winimage.com). 106or (for the Windows DLL version) to Gilles Vollant (info@winimage.com).
107.SH AUTHORS AND LICENSE 107.SH AUTHORS AND LICENSE
108Version 1.3.2 108Version 1.3.2.1
109.LP 109.LP
110Copyright (C) 1995-2026 Jean-loup Gailly and Mark Adler 110Copyright (C) 1995-2026 Jean-loup Gailly and Mark Adler
111.LP 111.LP
diff --git a/zlib.h b/zlib.h
index a57d3361..0a9e7909 100644
--- a/zlib.h
+++ b/zlib.h
@@ -1,5 +1,5 @@
1/* zlib.h -- interface of the 'zlib' general purpose compression library 1/* zlib.h -- interface of the 'zlib' general purpose compression library
2 version 1.3.2, February 17th, 2026 2 version 1.3.2.1, February xxth, 2026
3 3
4 Copyright (C) 1995-2026 Jean-loup Gailly and Mark Adler 4 Copyright (C) 1995-2026 Jean-loup Gailly and Mark Adler
5 5
@@ -41,12 +41,12 @@
41extern "C" { 41extern "C" {
42#endif 42#endif
43 43
44#define ZLIB_VERSION "1.3.2" 44#define ZLIB_VERSION "1.3.2.1-motley"
45#define ZLIB_VERNUM 0x1320 45#define ZLIB_VERNUM 0x1321
46#define ZLIB_VER_MAJOR 1 46#define ZLIB_VER_MAJOR 1
47#define ZLIB_VER_MINOR 3 47#define ZLIB_VER_MINOR 3
48#define ZLIB_VER_REVISION 2 48#define ZLIB_VER_REVISION 2
49#define ZLIB_VER_SUBREVISION 0 49#define ZLIB_VER_SUBREVISION 1
50 50
51/* 51/*
52 The 'zlib' compression library provides in-memory compression and 52 The 'zlib' compression library provides in-memory compression and