[RELEASE] Released 1.3.6 with the following changes :
    - stats now support the HEAD method too
    - extracted http request from the session
    - huge rework of the HTTP parser which is now a 28-state FSM.
    - linux-style likely/unlikely macros for optimization hints
    - do not create a server socket when there's no server
diff --git a/src/haproxy.c b/src/haproxy.c
index 84ee209..3fe500b 100644
--- a/src/haproxy.c
+++ b/src/haproxy.c
@@ -1,6 +1,6 @@
 /*
  * HA-Proxy : High Availability-enabled HTTP/TCP proxy
- * Copyright 2000-2006  Willy Tarreau <w@1wt.eu>.
+ * Copyright 2000-2007  Willy Tarreau <w@1wt.eu>.
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
@@ -145,7 +145,7 @@
 void display_version()
 {
 	printf("HA-Proxy version " HAPROXY_VERSION " " HAPROXY_DATE"\n");
-	printf("Copyright 2000-2006 Willy Tarreau <w@1wt.eu>\n\n");
+	printf("Copyright 2000-2007 Willy Tarreau <w@1wt.eu>\n\n");
 }
 
 /*