Commit 13f13793 authored by Pål Hermunn Johansen's avatar Pål Hermunn Johansen

Prepare for 6.4.0

parent 416e3bf6
......@@ -141,7 +141,7 @@ Resp_Setup_Deliver(struct req *req)
http_PrintfHeader(h, "Age: %.0f",
floor(fmax(0., req->t_prev - oc->t_origin)));
http_SetHeader(h, "Via: 1.1 varnish (Varnish/6.3)");
http_SetHeader(h, "Via: 1.1 varnish (Varnish/6.4)");
if (cache_param->http_gzip_support &&
ObjCheckFlag(req->wrk, oc, OF_GZIPED) &&
......
AC_PREREQ(2.59)
AC_COPYRIGHT([Copyright (c) 2006 Verdens Gang AS
Copyright (c) 2006-2019 Varnish Software])
Copyright (c) 2006-2020 Varnish Software])
AC_REVISION([$Id$])
AC_INIT([Varnish], [trunk], [varnish-dev@varnish-cache.org])
AC_INIT([Varnish], [6.4.0], [varnish-dev@varnish-cache.org])
AC_CONFIG_SRCDIR(include/miniobj.h)
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIR([m4])
......
......@@ -50,8 +50,6 @@ Varnish Cache 6.4.0 (2019-09-16)
director, which, amongst other advantages, offers more stable
backend selection through consistent hashing.
.. do we want to mention VSV00004 ?
* Log records can safely have empty fields or fields containing blanks if
they are delimited by "double quotes". This was applied to ``SessError``
and ``Backend_health``.
......@@ -60,9 +58,6 @@ Varnish Cache 6.4.0 (2019-09-16)
of a dynamic backend. A hash is now computed to determine uniqueness and
a backend declaration can contribute arbitrary data to influence the pool.
.. 3109 (vdp gunzip) is probably irrelevant for users because it only
happens with gzip objects inserted bypassing the built-in vfps
* The option ``varnishtest -W`` is gone, the same can be achieved with
``varnishtest -p debug=+witness``. A ``witness.sh`` script is available
in the source tree to generate a graphviz dot file and detect potential
......@@ -130,8 +125,6 @@ Varnish Cache 6.4.0 (2019-09-16)
* Always refer to ``sub`` as subroutine in the documentation and error
messages to avoid confusion with other terms.
.. mention #3176? (backend cooling straightened out)
* New ``pid`` command in the Varnish CLI, to get the master and optionally
cache process PIDs, for example from ``varnishadm``.
......
......@@ -37,7 +37,7 @@ Longer listings like example command output and VCL look like this::
$ /opt/varnish/sbin/varnishd -V
varnishd (varnish-trunk revision 199de9b)
Copyright (c) 2006 Verdens Gang AS
Copyright (c) 2006-2019 Varnish Software AS
Copyright (c) 2006-2020 Varnish Software AS
.. For maintainers:
......
......@@ -53,7 +53,7 @@
* Whenever something is deleted or changed in a way which is not
* binary/load-time compatible, increment MAJOR version
*
* unreleased (planned for 2020-03-15)
* 11.0 (2020-03-16)
* Changed type of vsa_suckaddr_len from int to size_t
* New prefix_{ptr|len} fields in vrt_backend
* VRT_HashStrands32() added
......@@ -159,7 +159,7 @@
* vrt_acl type added
*/
#define VRT_MAJOR_VERSION 10U
#define VRT_MAJOR_VERSION 11U
#define VRT_MINOR_VERSION 0U
......
......@@ -74,7 +74,7 @@ VCS_String(const char *which)
")"
"\n"
"Copyright (c) 2006 Verdens Gang AS\n"
"Copyright (c) 2006-2019 Varnish Software AS\n"
"Copyright (c) 2006-2020 Varnish Software AS\n"
);
default:
WRONG("Wrong argument to VCS_String");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment