diff --git a/ChangeLog b/ChangeLog index 2e49506f1..cfd55e647 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,33 @@ +Version v0.4.6 +============== + + - src/modules/l0-server.c: fix memleak + - l0-server.c: change return type and value of json_eq function + - Merge pull request #112 from teonet-co/fix/remove-invalid-callback + - fix reconnect (#175) + - Merge pull request #170 from teonet-co/fix/dns-names + - Update src/config/opt.c + - opt.c: fix dns names + - Merge pull request #169 from teonet-co/fix/unknown_type_arp_table + - Add special argument for passing auth secret. + - Check signature length before other stuff. + - Merge fixes. + - Remove almost all allocations from auth check process. + - Add more logging to auth verification errors. + - Fix result client name building + - Remove old check function. + - Fix authdata string building. + - Add new auth check scheme. + - Fix tab indentation, remove duplicate include, move include to the beginning of the file. + - Set empty type in extended arp table if type of a peer is not known. + - double free fix + - l0-server.c: new auth + - Merge pull request #167 from teonet-co/feature/packetsize-increase + - net_split.h: increase max packet size to 5MB + - update regular exp and libtuntap + - Feature/package (#163) + - Remove PROCESS_RECEIVE_NO_TRUDP callback that was never called. + Version v0.4.5 ============== diff --git a/configure.ac b/configure.ac index c87e41196..5c36dadb3 100644 --- a/configure.ac +++ b/configure.ac @@ -13,16 +13,16 @@ AC_SUBST([$1], ['$2']) m4_define([package_major], [0]) m4_define([package_minor], [4]) -m4_define([package_patch], [5]) +m4_define([package_patch], [6]) m4_define([package_version], [package_major[.]package_minor[.]package_patch]) AC_PREREQ([2.69]) AC_INIT([teonet], [package_version], [Kirill Scherba , Max Ponka ]) -AC_DEFINE_SUBST(LIBRARY_CURRENT, 3, [teocli dynamic library version]) -AC_DEFINE_SUBST(LIBRARY_REVISION, 5,[teocli dynamic library version]) -AC_DEFINE_SUBST(LIBRARY_AGE, 0, [teocli dynamic library version]) +AC_DEFINE_SUBST(LIBRARY_CURRENT, 3, [teonet dynamic library version]) +AC_DEFINE_SUBST(LIBRARY_REVISION, 6, [teonet dynamic library version]) +AC_DEFINE_SUBST(LIBRARY_AGE, 0, [teonet dynamic library version]) AC_DEFINE_SUBST(PACKAGE_MAJOR_VERSION, [package_major], [pack ver]) AC_DEFINE_SUBST(PACKAGE_MINOR_VERSION, [package_minor], [pack ver]) diff --git a/misc/RELEASE_BODY b/misc/RELEASE_BODY index 4c89b8499..067744e4a 100644 --- a/misc/RELEASE_BODY +++ b/misc/RELEASE_BODY @@ -1,5 +1,7 @@ Changes: - - IpV6 - - tcp fixed - - new interface for node wrapper + - NEW authentication algorithm + - fix reconnect for ipv6 + - fix dns names for ipv6 + - remove old regacy callback for trudp protocol +