|
1 | 1 | /* png.h - header file for PNG reference library |
2 | 2 | * |
3 | | - * libpng version 1.6.54 |
| 3 | + * libpng version 1.6.55 |
4 | 4 | * |
5 | 5 | * Copyright (c) 2018-2026 Cosmin Truta |
6 | 6 | * Copyright (c) 1998-2002,2004,2006-2018 Glenn Randers-Pehrson |
|
14 | 14 | * libpng versions 0.89, June 1996, through 0.96, May 1997: Andreas Dilger |
15 | 15 | * libpng versions 0.97, January 1998, through 1.6.35, July 2018: |
16 | 16 | * Glenn Randers-Pehrson |
17 | | - * libpng versions 1.6.36, December 2018, through 1.6.54, January 2026: |
| 17 | + * libpng versions 1.6.36, December 2018, through 1.6.55, February 2026: |
18 | 18 | * Cosmin Truta |
19 | 19 | * See also "Contributing Authors", below. |
20 | 20 | */ |
|
238 | 238 | * ... |
239 | 239 | * 1.5.30 15 10530 15.so.15.30[.0] |
240 | 240 | * ... |
241 | | - * 1.6.54 16 10654 16.so.16.54[.0] |
| 241 | + * 1.6.55 16 10655 16.so.16.55[.0] |
242 | 242 | * |
243 | 243 | * Henceforth the source version will match the shared-library major and |
244 | 244 | * minor numbers; the shared-library major version number will be used for |
|
274 | 274 | */ |
275 | 275 |
|
276 | 276 | /* Version information for png.h - this should match the version in png.c */ |
277 | | -#define PNG_LIBPNG_VER_STRING "1.6.54" |
| 277 | +#define PNG_LIBPNG_VER_STRING "1.6.55" |
278 | 278 | #define PNG_HEADER_VERSION_STRING " libpng version " PNG_LIBPNG_VER_STRING "\n" |
279 | 279 |
|
280 | 280 | /* The versions of shared library builds should stay in sync, going forward */ |
|
285 | 285 | /* These should match the first 3 components of PNG_LIBPNG_VER_STRING: */ |
286 | 286 | #define PNG_LIBPNG_VER_MAJOR 1 |
287 | 287 | #define PNG_LIBPNG_VER_MINOR 6 |
288 | | -#define PNG_LIBPNG_VER_RELEASE 54 |
| 288 | +#define PNG_LIBPNG_VER_RELEASE 55 |
289 | 289 |
|
290 | 290 | /* This should be zero for a public release, or non-zero for a |
291 | 291 | * development version. |
|
316 | 316 | * From version 1.0.1 it is: |
317 | 317 | * XXYYZZ, where XX=major, YY=minor, ZZ=release |
318 | 318 | */ |
319 | | -#define PNG_LIBPNG_VER 10654 /* 1.6.54 */ |
| 319 | +#define PNG_LIBPNG_VER 10655 /* 1.6.55 */ |
320 | 320 |
|
321 | 321 | /* Library configuration: these options cannot be changed after |
322 | 322 | * the library has been built. |
@@ -426,7 +426,7 @@ extern "C" { |
426 | 426 | /* This triggers a compiler error in png.c, if png.c and png.h |
427 | 427 | * do not agree upon the version number. |
428 | 428 | */ |
429 | | -typedef char *png_libpng_version_1_6_54; |
| 429 | +typedef char *png_libpng_version_1_6_55; |
430 | 430 |
|
431 | 431 | /* Basic control structions. Read libpng-manual.txt or libpng.3 for more info. |
432 | 432 | * |
|
0 commit comments