1
0
Fork 0

[C] Updated version

This commit is contained in:
seleznevae 2019-08-27 09:42:43 +03:00
parent 00d8dadfd6
commit 218e4d49d8
4 changed files with 13 additions and 7 deletions

View File

@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.0)
project(libfort VERSION 0.1.6)
project(libfort VERSION 0.2.0)
string(REGEX REPLACE "([0-9]+)\\.([0-9]+)\\.([0-9]+)"
"\\1.\\2" libfort_SOVERSION

View File

@ -1,3 +1,9 @@
## v0.2.0
### API
- Added support for UTF-8 strings (`ft_u8write`, `ft_u8printf` ...).
## v0.1.6
### Internal

View File

@ -45,9 +45,9 @@ SOFTWARE.
*****************************************************************************/
#define LIBFORT_MAJOR_VERSION 0
#define LIBFORT_MINOR_VERSION 1
#define LIBFORT_REVISION 6
#define LIBFORT_VERSION_STR "0.1.6"
#define LIBFORT_MINOR_VERSION 2
#define LIBFORT_REVISION 0
#define LIBFORT_VERSION_STR "0.2.0"
/*****************************************************************************

View File

@ -45,9 +45,9 @@ SOFTWARE.
*****************************************************************************/
#define LIBFORT_MAJOR_VERSION 0
#define LIBFORT_MINOR_VERSION 1
#define LIBFORT_REVISION 6
#define LIBFORT_VERSION_STR "0.1.6"
#define LIBFORT_MINOR_VERSION 2
#define LIBFORT_REVISION 0
#define LIBFORT_VERSION_STR "0.2.0"
/*****************************************************************************