From 218e4d49d82599fa32259ee3afab90cb0050c875 Mon Sep 17 00:00:00 2001 From: seleznevae Date: Tue, 27 Aug 2019 09:42:43 +0300 Subject: [PATCH] [C] Updated version --- CMakeLists.txt | 2 +- ChangeLog.md | 6 ++++++ lib/fort.h | 6 +++--- src/fort.h | 6 +++--- 4 files changed, 13 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a8810f7..1296368 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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 diff --git a/ChangeLog.md b/ChangeLog.md index 3e1afb1..abb188e 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,9 @@ +## v0.2.0 + +### API + +- Added support for UTF-8 strings (`ft_u8write`, `ft_u8printf` ...). + ## v0.1.6 ### Internal diff --git a/lib/fort.h b/lib/fort.h index f06338d..1ad1e75 100644 --- a/lib/fort.h +++ b/lib/fort.h @@ -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" /***************************************************************************** diff --git a/src/fort.h b/src/fort.h index f06338d..1ad1e75 100644 --- a/src/fort.h +++ b/src/fort.h @@ -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" /*****************************************************************************