From e5a21b26508e7ba222bf2588021f3ac12f2c7ec2 Mon Sep 17 00:00:00 2001 From: max Date: Fri, 4 Dec 2020 13:13:50 +0300 Subject: [PATCH] new version v0.4.5 --- ChangeLog | 11 +++++++++-- misc/RELEASE_BODY | 15 +++------------ misc/change_log_prepend.sh | 23 +++++++---------------- 3 files changed, 19 insertions(+), 30 deletions(-) diff --git a/ChangeLog b/ChangeLog index ca1b76080..2e49506f1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,11 @@ -Version 0.1.74 at 2016-08-10 20:40 +Version v0.4.5 +============== + + - IpV6 + - tcp fixed + - new interface for node wrapper + +Version 0.1.74 ============== - the EV_A_INTERVAL event added, this event used in teonet-node-angular @@ -6,7 +13,7 @@ Version 0.1.74 at 2016-08-10 20:40 - option block_cli_input_f (block CLI input) added, configuration parameter BLOCK_CLI_INPUT can be added to the Teonet initialize functions as option. -Version 0.1.73 at 2016-06-29 14:25 +Version 0.1.73 ============== - teodb binary list request always return all keys fixed diff --git a/misc/RELEASE_BODY b/misc/RELEASE_BODY index 1a380d1c4..4c89b8499 100644 --- a/misc/RELEASE_BODY +++ b/misc/RELEASE_BODY @@ -1,14 +1,5 @@ Changes: - - Fix SIZE_T_MAX is always equals to UINT_MAX. - - new version v0.1.4 - - tool script - - map.c: fix resize map - - Add Visual Studio solution and project fie. - - Fixed tests. - - Changes in map: change buffer type to uint8_t* and add const qualifiers to constant buffers. - - Removed dangerous pointer arithmetics. - - Update types in hash. Use constant pointers for input data. - - Add test for lru - - algs/lru_cache.c: lru cache interface - - Fix struct alias usage + - IpV6 + - tcp fixed + - new interface for node wrapper diff --git a/misc/change_log_prepend.sh b/misc/change_log_prepend.sh index ae25c2c3f..67ddbe92f 100755 --- a/misc/change_log_prepend.sh +++ b/misc/change_log_prepend.sh @@ -11,19 +11,10 @@ die () { exit 1 } -# Empty line -echo "\n" | cat - ChangeLog > temp && mv temp ChangeLog - -# List of changes -git log --pretty=format:' - %s' $1..HEAD | cat - ChangeLog > temp && mv temp ChangeLog - -# Empty line -echo "" | cat - ChangeLog > temp && mv temp ChangeLog - -# Last tag -git describe --tags | cat - ChangeLog > temp && mv temp ChangeLog -echo "### " | cat - ChangeLog > temp && mv temp ChangeLog - -# git rev-parse v0.1.39-1-g197cc61 -# git describe --tags -# \ No newline at end of file +echo -n "Version " >ChangeLog.tmp +git describe --tags >>ChangeLog.tmp +echo "==============\n" >>ChangeLog.tmp +git log --pretty=format:' - %s' $1..HEAD >>ChangeLog.tmp +echo "\n" >> ChangeLog.tmp +cat ChangeLog >>ChangeLog.tmp +mv ChangeLog.tmp ChangeLog \ No newline at end of file