[RELEASE] Released version 1.5.11

Released version 1.5.11 with the following main changes :
    - BUG/MEDIUM: backend: correctly detect the domain when use_domain_only is used
    - MINOR: ssl: load certificates in alphabetical order
    - BUG/MINOR: checks: prevent http keep-alive with http-check expect
    - BUG/MEDIUM: Do not set agent health to zero if server is disabled in config
    - MEDIUM/BUG: Only explicitly report "DOWN (agent)" if the agent health is zero
    - BUG/MINOR: stats:Fix incorrect printf type.
    - DOC: add missing entry for log-format and clarify the text
    - BUG/MEDIUM: http: fix header removal when previous header ends with pure LF
    - BUG/MEDIUM: channel: fix possible integer overflow on reserved size computation
    - BUG/MINOR: channel: compare to_forward with buf->i, not buf->size
    - MINOR: channel: add channel_in_transit()
    - MEDIUM: channel: make buffer_reserved() use channel_in_transit()
    - MEDIUM: channel: make bi_avail() use channel_in_transit()
    - BUG/MEDIUM: channel: don't schedule data in transit for leaving until connected
    - BUG/MAJOR: log: don't try to emit a log if no logger is set
    - BUG/MINOR: args: add missing entry for ARGT_MAP in arg_type_names
    - BUG/MEDIUM: http: make http-request set-header compute the string before removal
    - BUG/MINOR: http: fix incorrect header value offset in replace-hdr/replace-value
    - BUG/MINOR: http: abort request processing on filter failure
diff --git a/CHANGELOG b/CHANGELOG
index 1c57db9..683e9f2 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,27 @@
 ChangeLog :
 ===========
 
+2015/02/01 : 1.5.11
+    - BUG/MEDIUM: backend: correctly detect the domain when use_domain_only is used
+    - MINOR: ssl: load certificates in alphabetical order
+    - BUG/MINOR: checks: prevent http keep-alive with http-check expect
+    - BUG/MEDIUM: Do not set agent health to zero if server is disabled in config
+    - MEDIUM/BUG: Only explicitly report "DOWN (agent)" if the agent health is zero
+    - BUG/MINOR: stats:Fix incorrect printf type.
+    - DOC: add missing entry for log-format and clarify the text
+    - BUG/MEDIUM: http: fix header removal when previous header ends with pure LF
+    - BUG/MEDIUM: channel: fix possible integer overflow on reserved size computation
+    - BUG/MINOR: channel: compare to_forward with buf->i, not buf->size
+    - MINOR: channel: add channel_in_transit()
+    - MEDIUM: channel: make buffer_reserved() use channel_in_transit()
+    - MEDIUM: channel: make bi_avail() use channel_in_transit()
+    - BUG/MEDIUM: channel: don't schedule data in transit for leaving until connected
+    - BUG/MAJOR: log: don't try to emit a log if no logger is set
+    - BUG/MINOR: args: add missing entry for ARGT_MAP in arg_type_names
+    - BUG/MEDIUM: http: make http-request set-header compute the string before removal
+    - BUG/MINOR: http: fix incorrect header value offset in replace-hdr/replace-value
+    - BUG/MINOR: http: abort request processing on filter failure
+
 2014/12/31 : 1.5.10
     - DOC: fix a few typos
     - BUG/MINOR: http: fix typo: "401 Unauthorized" => "407 Unauthorized"
diff --git a/README b/README
index 5feb042..808985c 100644
--- a/README
+++ b/README
@@ -1,9 +1,9 @@
                          ----------------------
                              HAProxy how-to
                          ----------------------
-                             version 1.5.10
+                             version 1.5.11
                              willy tarreau
-                               2014/12/31
+                               2015/02/01
 
 
 1) How to build it
diff --git a/VERDATE b/VERDATE
index ee128d6..81fc0b5 100644
--- a/VERDATE
+++ b/VERDATE
@@ -1,2 +1,2 @@
 $Format:%ci$
-2014/12/31
+2015/01/31
diff --git a/VERSION b/VERSION
index f0ed379..df80819 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.5.10
+1.5.11
diff --git a/doc/configuration.txt b/doc/configuration.txt
index e951959..3ae6624 100644
--- a/doc/configuration.txt
+++ b/doc/configuration.txt
@@ -2,9 +2,9 @@
                                 HAProxy
                           Configuration Manual
                          ----------------------
-                             version 1.5.10
+                             version 1.5.11
                              willy tarreau
-                              2014/12/31
+                               2015/02/01
 
 
 This document covers the configuration language as implemented in the version
diff --git a/examples/haproxy.spec b/examples/haproxy.spec
index e21dc8f..5761fcd 100644
--- a/examples/haproxy.spec
+++ b/examples/haproxy.spec
@@ -1,6 +1,6 @@
 Summary: HA-Proxy is a TCP/HTTP reverse proxy for high availability environments
 Name: haproxy
-Version: 1.5.10
+Version: 1.5.11
 Release: 1
 License: GPL
 Group: System Environment/Daemons
@@ -76,6 +76,9 @@
 %attr(0755,root,root) %config %{_sysconfdir}/rc.d/init.d/%{name}
 
 %changelog
+* Sun Feb  1 2015 Willy Tarreau <w@1wt.eu>
+- updated to 1.5.11
+
 * Wed Dec 31 2014 Willy Tarreau <w@1wt.eu>
 - updated to 1.5.10
 
diff --git a/src/haproxy.c b/src/haproxy.c
index 9f742c7..7ec596c 100644
--- a/src/haproxy.c
+++ b/src/haproxy.c
@@ -216,7 +216,7 @@
 void display_version()
 {
 	printf("HA-Proxy version " HAPROXY_VERSION " " HAPROXY_DATE"\n");
-	printf("Copyright 2000-2014 Willy Tarreau <w@1wt.eu>\n\n");
+	printf("Copyright 2000-2015 Willy Tarreau <w@1wt.eu>\n\n");
 }
 
 void display_build_opts()