1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
From e1b1c52028b446fdef837d26341dd1431780e0f6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Stefan=20B=C3=BChler?= <stbuehler@web.de>
Date: Wed, 2 Apr 2014 10:04:09 +0000
Subject: [PATCH 01/29] - next is 1.4.36
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
From: Stefan Bühler <stbuehler@web.de>
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2961 152afb58-edef-0310-8abb-c4023f1b3aa9
---
CMakeLists.txt | 2 +-
NEWS | 7 +++++--
SConstruct | 2 +-
configure.ac | 2 +-
4 files changed, 8 insertions(+), 5 deletions(-)
diff --git a/NEWS b/NEWS
index 9f4c04a..b9bd48f 100644
--- a/NEWS
+++ b/NEWS
@@ -3,7 +3,10 @@
NEWS
====
-- 1.4.35
+- 1.4.36
+ *
+
+- 1.4.35 - 2014-03-12
* [network/ssl] fix build error if TLSEXT is disabled
* [mod_fastcgi] fix use after free (only triggered if fastcgi debug is active)
* [mod_rrdtool] fix invalid read (string not null terminated)
@@ -23,7 +26,7 @@ NEWS
* check length of unix domain socket filenames
* fix SQL injection / host name validation (thx Jann Horn)
-- 1.4.34
+- 1.4.34 - 2014-01-20
* [mod_auth] explicitly link ssl for SHA1 (fixes #2517)
* [mod_extforward] fix compilation without IPv6, (not) using undefined var (fixes #2515, thx mm)
* [ssl] fix SNI handling; only use key+cert from SNI specific config (fixes #2525, CVE-2013-4508)
diff --git a/SConstruct b/SConstruct
index cb2a58f..d8bd98a 100644
--- a/SConstruct
+++ b/SConstruct
@@ -5,7 +5,7 @@ import string
from stat import *
package = 'lighttpd'
-version = '1.4.35'
+version = '1.4.36'
def checkCHeaders(autoconf, hdrs):
p = re.compile('[^A-Z0-9]')
diff --git a/configure.ac b/configure.ac
index 682023b..ae35234 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
dnl -*- Autoconf -*-
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.57)
-AC_INIT([lighttpd], [1.4.35], [contact@lighttpd.net])
+AC_INIT([lighttpd], [1.4.36], [contact@lighttpd.net])
AC_CONFIG_SRCDIR([src/server.c])
AC_CONFIG_HEADER([config.h])
AC_CONFIG_MACRO_DIR([m4])
--
2.4.5
|