Skip to content

Commit

Permalink
bump version to v0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
randy408 committed Nov 24, 2021
1 parent 8c74bfe commit 6a1a708
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 @@ -4,7 +4,7 @@ project(libspng C)

set(SPNG_MAJOR 0)
set(SPNG_MINOR 7)
set(SPNG_REVISION 0)
set(SPNG_REVISION 1)
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,7 +26,7 @@ spng_ctx_free(ctx);

```
For a complete example see [example.c](https://github.com/randy408/libspng/blob/v0.7.0/examples/example.c).
For a complete example see [example.c](https://github.com/randy408/libspng/blob/v0.7.1/examples/example.c).
## Decoding untrusted files
Expand Down
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.0',
version : '0.7.1',
license : [ 'BSD-2-Clause', 'libpng-2.0' ],
default_options : 'c_std=c99'
)
Expand Down Expand Up @@ -50,7 +50,7 @@ spng_lib = library('spng',
c_args : spng_args,
dependencies : spng_deps,
install : not static_subproject,
version : '0.7.0'
version : '0.7.1'
)

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.0
site_name: libspng v0.7.1
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 0
#define SPNG_VERSION_PATCH 1

enum spng_errno
{
Expand Down

0 comments on commit 6a1a708

Please sign in to comment.