prepare version 0.5.0-rc1

This commit is contained in:
Erik Ekman 2009-01-10 20:40:22 +00:00
parent fa9b145af1
commit 46293b51b1
3 changed files with 3 additions and 9 deletions

View File

@ -5,7 +5,7 @@ iodine - http://code.kryo.se/iodine
CHANGES: CHANGES:
2009-xx-xx: 0.x.x 2009-01-10: 0.5.0-rc1 "iPassed"
- Fixed segfault in server when sending version reject. - Fixed segfault in server when sending version reject.
- Applied patch to make iodine build on BeOS R5-BONE and Haiku, - Applied patch to make iodine build on BeOS R5-BONE and Haiku,
from Francois Revol. Still work to do to get tun device working. from Francois Revol. Still work to do to get tun device working.

View File

@ -848,12 +848,8 @@ help() {
static void static void
version() { version() {
char *svnver;
svnver = "$Rev$ from $Date$";
printf("iodine IP over DNS tunneling client\n"); 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); exit(0);
} }

View File

@ -882,10 +882,8 @@ help() {
static void static void
version() { version() {
char *svnver;
svnver = "$Rev$ from $Date$";
printf("iodine IP over DNS tunneling server\n"); 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); exit(0);
} }