From: Guus Sliepen Date: Tue, 12 Jun 2018 14:27:45 +0000 (+0200) Subject: Releasing 1.0.34. X-Git-Tag: release-1.0.34^0 X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=54b18a85f68652f94ac5ecffbd9d100879ed06ea Releasing 1.0.34. --- diff --git a/COPYING b/COPYING index c7a4498a..1a88dcf3 100644 --- a/COPYING +++ b/COPYING @@ -1,4 +1,4 @@ -Copyright (C) 1998-2017 Ivo Timmermans, Guus Sliepen and others. +Copyright (C) 1998-2018 Ivo Timmermans, Guus Sliepen and others. See the AUTHORS file for a complete list. This program is free software; you can redistribute it and/or modify it under diff --git a/NEWS b/NEWS index 45c83438..aefcd40b 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,14 @@ +Version 1.0.34 June 12 2018 + + * Fix a potential segmentation fault when connecting to an IPv6 peer via a + proxy. + * Minor improvements to the build system. + * Make the systemd service file identical to the one from the 1.1 branch. + * Fix a potential problem causing IPv4 sockets to not work on macOS. + +Thanks to Maximilian Stein and Wang Liu Shuai for their contributions to this +version of tinc. + Version 1.0.33 November 4 2017 * Allow compilation from a build directory. diff --git a/README b/README index 3fc0ee95..e2355dcb 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ -This is the README file for tinc version 1.0.33. Installation +This is the README file for tinc version 1.0.34. Installation instructions may be found in the INSTALL file. -tinc is Copyright (C) 1998-2017 by: +tinc is Copyright (C) 1998-2018 by: Ivo Timmermans, Guus Sliepen , diff --git a/configure.ac b/configure.ac index 8da785c1..2564bf3b 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.61) -AC_INIT([tinc], [1.0.33]) +AC_INIT([tinc], [1.0.34]) AC_CONFIG_SRCDIR([src/tincd.c]) AM_INIT_AUTOMAKE([1.11 check-news std-options subdir-objects nostdinc silent-rules -Wall]) AC_CONFIG_HEADERS([config.h]) diff --git a/doc/tinc.texi b/doc/tinc.texi index 543687d0..532bbb54 100644 --- a/doc/tinc.texi +++ b/doc/tinc.texi @@ -15,7 +15,7 @@ This is the info manual for @value{PACKAGE} version @value{VERSION}, a Virtual Private Network daemon. -Copyright @copyright{} 1998-2017 Ivo Timmermans, +Copyright @copyright{} 1998-2018 Ivo Timmermans, Guus Sliepen and Wessel Dankers . @@ -39,7 +39,7 @@ permission notice identical to this one. @vskip 0pt plus 1filll This is the info manual for @value{PACKAGE} version @value{VERSION}, a Virtual Private Network daemon. -Copyright @copyright{} 1998-2017 Ivo Timmermans, +Copyright @copyright{} 1998-2018 Ivo Timmermans, Guus Sliepen and Wessel Dankers . diff --git a/src/tincd.c b/src/tincd.c index 279c8723..bc04f5f2 100644 --- a/src/tincd.c +++ b/src/tincd.c @@ -1,7 +1,7 @@ /* tincd.c -- the main file for tincd Copyright (C) 1998-2005 Ivo Timmermans - 2000-2017 Guus Sliepen + 2000-2018 Guus Sliepen 2008 Max Rijevski 2009 Michael Tokarev 2010 Julien Muchembled @@ -662,7 +662,7 @@ int main(int argc, char **argv) { if(show_version) { printf("%s version %s\n", PACKAGE, VERSION); - printf("Copyright (C) 1998-2017 Ivo Timmermans, Guus Sliepen and others.\n" + printf("Copyright (C) 1998-2018 Ivo Timmermans, Guus Sliepen and others.\n" "See the AUTHORS file for a complete list.\n\n" "tinc comes with ABSOLUTELY NO WARRANTY. This is free software,\n" "and you are welcome to redistribute it under certain conditions;\n"