bump version to v0.7.4

This commit is contained in:
Randy 2023-05-08 16:45:20 +03:00
parent e68ba5df57
commit fb768002d4
5 changed files with 6 additions and 6 deletions

View File

@ -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)

View File

@ -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)

View File

@ -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(

View File

@ -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

View File

@ -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
{