* bumped version to 1.2.8 and updated CHANGELOG accordingly
diff --git a/CHANGELOG b/CHANGELOG
index de10cd0..7a6db99 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,18 @@
 ChangeLog :
 ===========
 
+2006/01/29 : 1.2.8
+  - fixed a nasty bug affecting poll/epoll which could return unmodified data
+    from the server to the client, and sometimes lead to memory corruption
+    crashing the process.
+  - added the new pause/play mechanism with SIGTTOU/SIGTTIN for hot-reconf.
+
+2005/12/18 : 1.2.7.1
+  - the "retries" option was ignored because connect() could not return an
+    error if the connection failed before the timeout.
+  - TCP health-checks could not detect a connection refused in poll/epoll
+    mode.
+
 2005/11/13 : 1.2.7
   - building with -DUSE_PCRE should include PCRE headers and not regex.h. At
     least on Solaris, this caused the libc's regex primitives to be used instead
diff --git a/doc/architecture.txt b/doc/architecture.txt
index 2a78f53..361ecf1 100644
--- a/doc/architecture.txt
+++ b/doc/architecture.txt
@@ -2,9 +2,9 @@
                              H A - P r o x y
                            Architecture  Guide
                            -------------------
-                             version 1.1.32
+                             version 1.1.34
                               willy tarreau
-                               2005/07/17
+                               2006/01/29
 
 
 This document provides real world examples with working configurations.
diff --git a/doc/haproxy-en.txt b/doc/haproxy-en.txt
index 1df3488..635af43 100644
--- a/doc/haproxy-en.txt
+++ b/doc/haproxy-en.txt
@@ -2,9 +2,9 @@
                              H A - P r o x y
                             Reference  Manual
                            -------------------
-                              version 1.2.7
+                              version 1.2.8
                               willy tarreau
-                                2005/10/09
+                                2006/01/29
 
 ============
 | Abstract |
diff --git a/doc/haproxy-fr.txt b/doc/haproxy-fr.txt
index 9799728..1cc6e47 100644
--- a/doc/haproxy-fr.txt
+++ b/doc/haproxy-fr.txt
@@ -2,9 +2,9 @@
                              H A - P r o x y
                            Manuel de référence
                            -------------------
-                               version 1.2.7
+                              version 1.2.8
                               willy tarreau
-                                2005/10/09
+                                2006/01/29
 
 ================
 | Introduction |
diff --git a/haproxy.c b/haproxy.c
index 27a1cc9..a4f63c8 100644
--- a/haproxy.c
+++ b/haproxy.c
@@ -83,8 +83,8 @@
 
 #include "include/appsession.h"
 
-#define HAPROXY_VERSION "1.2.7.1"
-#define HAPROXY_DATE	"2005/12/04"
+#define HAPROXY_VERSION "1.2.8"
+#define HAPROXY_DATE	"2006/01/29"
 
 /* this is for libc5 for example */
 #ifndef TCP_NODELAY