Skip to content

Commit 6a1a708

Browse files
committed
bump version to v0.7.1
1 parent 8c74bfe commit 6a1a708

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ project(libspng C)
44

55
set(SPNG_MAJOR 0)
66
set(SPNG_MINOR 7)
7-
set(SPNG_REVISION 0)
7+
set(SPNG_REVISION 1)
88
set(SPNG_VERSION ${SPNG_MAJOR}.${SPNG_MINOR}.${SPNG_REVISION})
99

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

docs/usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ spng_ctx_free(ctx);
2626

2727
```
2828
29-
For a complete example see [example.c](https://github.com/randy408/libspng/blob/v0.7.0/examples/example.c).
29+
For a complete example see [example.c](https://github.com/randy408/libspng/blob/v0.7.1/examples/example.c).
3030
3131
3232
## Decoding untrusted files

meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('spng', 'c',
2-
version : '0.7.0',
2+
version : '0.7.1',
33
license : [ 'BSD-2-Clause', 'libpng-2.0' ],
44
default_options : 'c_std=c99'
55
)
@@ -50,7 +50,7 @@ spng_lib = library('spng',
5050
c_args : spng_args,
5151
dependencies : spng_deps,
5252
install : not static_subproject,
53-
version : '0.7.0'
53+
version : '0.7.1'
5454
)
5555

5656
spng_dep = declare_dependency(

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
site_name: libspng v0.7.0
1+
site_name: libspng v0.7.1
22
site_url: https://libspng.org/docs
33
repo_url: https://github.com/randy408/libspng/
44
site_description: libspng documentation

spng/spng.h

Lines changed: 1 addition & 1 deletion
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 0
31+
#define SPNG_VERSION_PATCH 1
3232

3333
enum spng_errno
3434
{

0 commit comments

Comments
 (0)