mirror of
https://github.com/randy408/libspng
synced 2025-03-28 21:13:20 +00:00
bump version to v0.7.4
This commit is contained in:
parent
e68ba5df57
commit
fb768002d4
@ -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)
|
||||
|
@ -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)
|
||||
|
@ -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(
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user