Skip to content

Commit

Permalink
Prepare for 6.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hermunn committed Mar 16, 2020
1 parent 416e3bf commit 13f1379
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 14 deletions.
2 changes: 1 addition & 1 deletion bin/varnishd/cache/cache_req_fsm.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) &&
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
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])
Expand Down
7 changes: 0 additions & 7 deletions doc/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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``.
Expand All @@ -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
Expand Down Expand Up @@ -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``.

Expand Down
2 changes: 1 addition & 1 deletion doc/sphinx/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions include/vrt.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -159,7 +159,7 @@
* vrt_acl type added
*/

#define VRT_MAJOR_VERSION 10U
#define VRT_MAJOR_VERSION 11U

#define VRT_MINOR_VERSION 0U

Expand Down
2 changes: 1 addition & 1 deletion lib/libvarnish/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 13f1379

Please sign in to comment.