Skip to content

Commit

Permalink
Bump version v0.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
angelskieglazki committed Mar 1, 2021
1 parent e0ef688 commit abfdf9d
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 7 deletions.
30 changes: 30 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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
==============

Expand Down
8 changes: 4 additions & 4 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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 <kirill@scherba.ru>, Max Ponka <mpano91@gmail.com>])

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])
Expand Down
8 changes: 5 additions & 3 deletions misc/RELEASE_BODY
Original file line number Diff line number Diff line change
@@ -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


0 comments on commit abfdf9d

Please sign in to comment.