diff --git a/ChangeLog b/ChangeLog index b11c5fe..e138eb1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +0.3.3: +- Fix SSL/TLS related memory leak. +- Fix 100% CPU issue with SSL connections. +- Added option to redirect from adc:// to adcs:// if tls is required. +- Added more informative error messages for the configuration file parser. +- Made sure logs can be rotated by sending a SIGHUP to the hub +- Fix bug #139: Unable to use TLS - due to not handling quotes around configuration strings. +- Fix bug #136 - !broadcast does not report status back to to sender. + + 0.3.2: - Fixed bugs in the kqueue network backend (OSX/BSD) - Rewrote the configuration backend code. diff --git a/debian/changelog b/debian/changelog index 73589ef..2ea247f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +uhub (0.3.3-1) unstable; urgency=low + + * Updated upstream version. + + -- Jan Vidar Krey Tue 24 Aug 2010 18:00:00 +0200 + uhub (0.3.2-1) unstable; urgency=low * Updated upstream version. diff --git a/doc/uhub.spec b/doc/uhub.spec index a72fd60..3e85c79 100644 --- a/doc/uhub.spec +++ b/doc/uhub.spec @@ -1,6 +1,6 @@ Summary: High performance ADC p2p hub. Name: uhub -Version: 0.3.2 +Version: 0.3.3 Release: 3 License: GPLv3 Group: Networking/File transfer diff --git a/version.h b/version.h index a958c68..2cae684 100644 --- a/version.h +++ b/version.h @@ -5,7 +5,7 @@ #endif #ifndef VERSION -#define VERSION "0.3.2" +#define VERSION "0.3.3" #endif #ifndef GIT_REVISION @@ -14,7 +14,7 @@ #else #define REVISION "(git: " GIT_REVISION ")" #ifdef GIT_VERSION -#define PRODUCT_STRING PRODUCT "/" GIT_VERSION +#define PRODUCT_STRING PRODUCT "/" VERSION " (" GIT_VERSION ")" #else #define PRODUCT_STRING PRODUCT "/" VERSION " " REVISION #endif