0.3.3 release candidate.

This commit is contained in:
Jan Vidar Krey 2010-08-24 23:36:30 +02:00
parent 25c03f5c96
commit 0190c38c32
4 changed files with 19 additions and 3 deletions

View File

@ -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.

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
uhub (0.3.3-1) unstable; urgency=low
* Updated upstream version.
-- Jan Vidar Krey <janvidar@extatic.org> Tue 24 Aug 2010 18:00:00 +0200
uhub (0.3.2-1) unstable; urgency=low
* Updated upstream version.

View File

@ -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

View File

@ -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