diff --git a/CHANGELOG b/CHANGELOG index 23dbe62..f2d2358 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -5,7 +5,7 @@ iodine - http://code.kryo.se/iodine CHANGES: -2009-xx-xx: 0.x.x +2009-01-10: 0.5.0-rc1 "iPassed" - Fixed segfault in server when sending version reject. - Applied patch to make iodine build on BeOS R5-BONE and Haiku, from Francois Revol. Still work to do to get tun device working. diff --git a/src/iodine.c b/src/iodine.c index 3af7037..0dd7a19 100644 --- a/src/iodine.c +++ b/src/iodine.c @@ -848,12 +848,8 @@ help() { static void version() { - char *svnver; - - svnver = "$Rev$ from $Date$"; - printf("iodine IP over DNS tunneling client\n"); - printf("SVN version: %s\n", svnver); + printf("version: 0.5.0-rc1 from 2009-01-10\n"); exit(0); } diff --git a/src/iodined.c b/src/iodined.c index a1dc298..a3abd4b 100644 --- a/src/iodined.c +++ b/src/iodined.c @@ -882,10 +882,8 @@ help() { static void version() { - char *svnver; - svnver = "$Rev$ from $Date$"; printf("iodine IP over DNS tunneling server\n"); - printf("SVN version: %s\n", svnver); + printf("version: 0.5.0-rc1 from 2009-01-10\n"); exit(0); }