From fb768002d4288590083a476af628e51c3f1d47cd Mon Sep 17 00:00:00 2001 From: Randy Date: Mon, 8 May 2023 16:45:20 +0300 Subject: [PATCH] bump version to v0.7.4 --- CMakeLists.txt | 2 +- docs/usage.md | 2 +- meson.build | 4 ++-- mkdocs.yml | 2 +- spng/spng.h | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 17111074..da1917e3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ set(CMAKE_C_STANDARD 99) set(SPNG_MAJOR 0) set(SPNG_MINOR 7) -set(SPNG_REVISION 3) +set(SPNG_REVISION 4) set(SPNG_VERSION ${SPNG_MAJOR}.${SPNG_MINOR}.${SPNG_REVISION}) option(ENABLE_OPT "Enable architecture-specific optimizations" ON) diff --git a/docs/usage.md b/docs/usage.md index 2ad4da7f..e01d8ec7 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -26,5 +26,5 @@ spng_ctx_free(ctx); ``` -For a complete example see [example.c](https://github.com/randy408/libspng/blob/v0.7.3/examples/example.c) +For a complete example see [example.c](https://github.com/randy408/libspng/blob/v0.7.4/examples/example.c) and [Decoding untrusted files](decode.md#decoding-untrusted-files) diff --git a/meson.build b/meson.build index d171a78d..af468944 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('spng', 'c', - version : '0.7.3', + version : '0.7.4', license : [ 'BSD-2-Clause', 'libpng-2.0' ], default_options : 'c_std=c99' ) @@ -52,7 +52,7 @@ spng_lib = library('spng', c_args : spng_args, dependencies : spng_deps, install : not static_subproject, - version : '0.7.3' + version : '0.7.4' ) spng_dep = declare_dependency( diff --git a/mkdocs.yml b/mkdocs.yml index 15f7d939..54a450d5 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,4 +1,4 @@ -site_name: libspng v0.7.3 +site_name: libspng v0.7.4 site_url: https://libspng.org/docs repo_url: https://github.com/randy408/libspng/ site_description: libspng documentation diff --git a/spng/spng.h b/spng/spng.h index 908ffc99..8f946337 100644 --- a/spng/spng.h +++ b/spng/spng.h @@ -28,7 +28,7 @@ extern "C" { #define SPNG_VERSION_MAJOR 0 #define SPNG_VERSION_MINOR 7 -#define SPNG_VERSION_PATCH 3 +#define SPNG_VERSION_PATCH 4 enum spng_errno {