From 6620dbb47a1b1781b98ca457b38ddd031fcd8891 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Tue, 2 Jan 2007 00:44:53 +0100 Subject: [PATCH] [RELEASE] released 1.3.4 Released 1.3.4 with the following major changes : - support for cttproxy on the server side to present the client address to the server. - added support for SO_REUSEPORT on Linux (needs kernel patch) - new RFC2616-compliant HTTP request parser with header indexing - split proxies in frontends, rulesets and backends - implemented the 'req[i]setbe' to select a backend depending on the contents - added the 'default_backend' keyword to select a default BE. - new stats page featuring FEs and BEs + bytes in both dirs - improved log format to indicate the backend and the time in ms. - lots of cleanups --- Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 0215a6dbc..906e8ee95 100644 --- a/Makefile +++ b/Makefile @@ -96,7 +96,9 @@ DEFINE = -DTPROXY # Now let's determine the version, sub-version and release date. # If we're in the GIT tree, we can use the last commit's version and date. +ifeq ($(IGNOREGIT),) VERSION := $(shell [ -d .git/. ] && ref=$$(git-describe --tags 2>/dev/null) && ref=$${ref%-g*} && echo "$${ref\#v}" ) +endif ifneq ($(VERSION),) # OK git is there and works. @@ -105,9 +107,9 @@ VERDATE := $(shell date +%Y/%m/%d -d "$$(git-log HEAD^.. 2>/dev/null | grep ^Dat else # Otherwise, use the hard-coded version of last tag, number of changes # since last tag, and release date. -VERSION := 1.3.3 -SUBVERS := -36 -VERDATE := 2006/12/23 +VERSION := 1.3.4 +SUBVERS := +VERDATE := 2007/01/02 endif #### build options