Skip to content

Commit

Permalink
new version v0.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
angelskieglazki committed Dec 4, 2020
1 parent b9a80ae commit e5a21b2
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 30 deletions.
11 changes: 9 additions & 2 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
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
application to tick angular interval timer in custom event loop;
- 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
Expand Down
15 changes: 3 additions & 12 deletions misc/RELEASE_BODY
Original file line number Diff line number Diff line change
@@ -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

23 changes: 7 additions & 16 deletions misc/change_log_prepend.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
#
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

0 comments on commit e5a21b2

Please sign in to comment.