Skip to content

Commit

Permalink
bump version to v0.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
randy408 committed May 8, 2023
1 parent e68ba5d commit fb76800
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
@@ -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'
)
Expand Down Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion spng/spng.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down

0 comments on commit fb76800

Please sign in to comment.