Update to version 0.2.8.
authorMartin Johansson <martin@fatbob.nu>
Tue, 11 Oct 2011 10:44:58 +0000 (06:44 -0400)
committerMartin Johansson <martin@fatbob.nu>
Tue, 11 Oct 2011 10:44:58 +0000 (06:44 -0400)
ChangeLog
README.md
configure.ac
src/version.h

index 6bb5d4ce06afd7712c72fb15e7a9d15724a9f4fb..13a19fe1b979a0ae88e71c95554efaf862c4d0e8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+0.2.8:
+Add channel passwords support. 'password = "<password>";' in channel configuration.
+Remove pointless CA cert handling with PolarSSL. Did not work anyway...
+Add support for PolarSSL v1.x.x. v0.x.x is still supported.
+Fix portability issues in configure script. Add poll.h to header checks.
+Fix unneccesary fatal exit when client is disconnected due to SSL error.
+Add configuration test flag to umurmurd (-t).
+
 0.2.7:
 Autotools build system implemented by Diaoul
 Add configuration option to log to file.
index b5d145d26ca2a8635e597f98fe927ef11aa1d833..48873304167250b0d312eaef6d2611e7d9d0a5db 100644 (file)
--- a/README.md
+++ b/README.md
@@ -31,6 +31,7 @@ Contributors
 * [tilman2](http://code.google.com/u/@UhZTSlBWAxNMWgU%3D/)
 * J Sisson - sisson.j ( AT ) gmail DOT com
 * [pierre.h](http://code.google.com/u/@VBRUQ1ZTAhNEXwJ9/)
+* [phr0z3nt04st](https://github.com/phr0z3nt04st)
 
 Hope I didn't forget anyone... Please just send me a mail if you feel this is the case.
 
index 6521769396c44b5fe5fb544684e725fdd731d406..7d39d9a6a893035371b2c70f06f85664aa23291e 100644 (file)
@@ -29,7 +29,7 @@
 
 # Process this file with autoconf to produce a configure script.
 AC_PREREQ([2.63])
-AC_INIT([umurmur], [0.2.7], [http://code.google.com/p/umurmur/issues/entry], [umurmur], [http://code.google.com/p/umurmur])
+AC_INIT([umurmur], [0.2.8], [http://code.google.com/p/umurmur/issues/entry], [umurmur], [http://code.google.com/p/umurmur])
 AC_CONFIG_SRCDIR([src/client.h])
 AC_CONFIG_HEADERS([config.h])
 AM_INIT_AUTOMAKE
index 606e5bebc8611cad98e750189fa8440396b5f2a2..d5f041270e8c49de66c1554872b8b9d18e40d4dd 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef VERSION_H_989876
 #define VERSION_H_989876
 
-#define UMURMUR_VERSION "0.2.7"
+#define UMURMUR_VERSION "0.2.8"
 
 #endif