From: Willy Tarreau Date: Mon, 1 Jan 2007 23:44:53 +0000 (+0100) Subject: [RELEASE] released 1.3.4 X-Git-Tag: v1.3.4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6620dbb47a1b1781b98ca457b38ddd031fcd8891;p=thirdparty%2Fhaproxy.git [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 --- diff --git a/Makefile b/Makefile index 0215a6dbc6..906e8ee95d 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