Skip to content

Commit fb76800

Browse files
committed
bump version to v0.7.4
1 parent e68ba5d commit fb76800

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set(CMAKE_C_STANDARD 99)
66

77
set(SPNG_MAJOR 0)
88
set(SPNG_MINOR 7)
9-
set(SPNG_REVISION 3)
9+
set(SPNG_REVISION 4)
1010
set(SPNG_VERSION ${SPNG_MAJOR}.${SPNG_MINOR}.${SPNG_REVISION})
1111

1212
option(ENABLE_OPT "Enable architecture-specific optimizations" ON)

docs/usage.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ spng_ctx_free(ctx);
2626

2727
```
2828
29-
For a complete example see [example.c](https://github.com/randy408/libspng/blob/v0.7.3/examples/example.c)
29+
For a complete example see [example.c](https://github.com/randy408/libspng/blob/v0.7.4/examples/example.c)
3030
and [Decoding untrusted files](decode.md#decoding-untrusted-files)

meson.build

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('spng', 'c',
2-
version : '0.7.3',
2+
version : '0.7.4',
33
license : [ 'BSD-2-Clause', 'libpng-2.0' ],
44
default_options : 'c_std=c99'
55
)
@@ -52,7 +52,7 @@ spng_lib = library('spng',
5252
c_args : spng_args,
5353
dependencies : spng_deps,
5454
install : not static_subproject,
55-
version : '0.7.3'
55+
version : '0.7.4'
5656
)
5757

5858
spng_dep = declare_dependency(

mkdocs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
site_name: libspng v0.7.3
1+
site_name: libspng v0.7.4
22
site_url: https://libspng.org/docs
33
repo_url: https://github.com/randy408/libspng/
44
site_description: libspng documentation

spng/spng.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ extern "C" {
2828

2929
#define SPNG_VERSION_MAJOR 0
3030
#define SPNG_VERSION_MINOR 7
31-
#define SPNG_VERSION_PATCH 3
31+
#define SPNG_VERSION_PATCH 4
3232

3333
enum spng_errno
3434
{

0 commit comments

Comments
 (0)