Version 0.6.0-rc1

This commit is contained in:
Erik Ekman 2010-02-13 13:56:07 +00:00
parent cf92d48f61
commit 2180503e47
3 changed files with 3 additions and 9 deletions

View File

@ -5,7 +5,7 @@ iodine - http://code.kryo.se/iodine
CHANGES: CHANGES:
20xx-xx-xx: x.y.z "Hotspotify" 2010-02-13: 0.6.0-rc1 "Hotspotify"
- Fixed tunnel not working on Windows. - Fixed tunnel not working on Windows.
- Any device name is now supported on Windows, fixes #47. - Any device name is now supported on Windows, fixes #47.
- Multiple installed TAP32 interfaces are now supported, fixes #46. - Multiple installed TAP32 interfaces are now supported, fixes #46.

View File

@ -101,12 +101,8 @@ help() {
static void static void
version() { version() {
char *svnver;
svnver = "$Rev$ from $Date$";
fprintf(stderr, "iodine IP over DNS tunneling client\n"); fprintf(stderr, "iodine IP over DNS tunneling client\n");
fprintf(stderr, "SVN version: %s\n", svnver); fprintf(stderr, "version: 0.6.0-rc1 from 2010-02-13\n");
exit(0); exit(0);
} }

View File

@ -2164,10 +2164,8 @@ help() {
static void static void
version() { version() {
char *svnver;
svnver = "$Rev$ from $Date$";
fprintf(stderr, "iodine IP over DNS tunneling server\n"); fprintf(stderr, "iodine IP over DNS tunneling server\n");
fprintf(stderr, "SVN version: %s\n", svnver); fprintf(stderr, "version: 0.6.0-rc1 from 2010-02-13\n");
exit(0); exit(0);
} }