Skip to content

Commit 1e997c5

Browse files
committed
bump version to v0.7.0 (stable)
1 parent ca8d336 commit 1e997c5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ project(libspng C)
55
set(SPNG_MAJOR 0)
66
set(SPNG_MINOR 7)
77
set(SPNG_REVISION 0)
8-
set(SPNG_VERSION ${SPNG_MAJOR}.${SPNG_MINOR}.${SPNG_REVISION}-rc3)
8+
set(SPNG_VERSION ${SPNG_MAJOR}.${SPNG_MINOR}.${SPNG_REVISION})
99

1010
option(ENABLE_OPT "Enable architecture-specific optimizations" ON)
1111
option(SPNG_SHARED "Build shared lib" ON)

docs/usage.md

+1-1
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.6.3/examples/example.c).
29+
For a complete example see [example.c](https://github.com/randy408/libspng/blob/v0.7.0/examples/example.c).
3030
3131
3232
## Decoding untrusted files

meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('spng', 'c',
2-
version : '0.7.0-rc3',
2+
version : '0.7.0',
33
license : [ 'BSD-2-Clause', 'libpng-2.0' ],
44
default_options : 'c_std=c99'
55
)

spng/spng.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -6087,7 +6087,7 @@ const char *spng_strerror(int err)
60876087

60886088
const char *spng_version_string(void)
60896089
{
6090-
return SPNG_VERSION_STRING "-rc3";
6090+
return SPNG_VERSION_STRING;
60916091
}
60926092

60936093
#if defined(_MSC_VER)

0 commit comments

Comments
 (0)