aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS9
-rw-r--r--configure.ac6
-rw-r--r--src/vmod_dict.c4
-rw-r--r--src/vmod_dict.vcc2
4 files changed, 13 insertions, 8 deletions
diff --git a/NEWS b/NEWS
index dc2ba29..a28b8f9 100644
--- a/NEWS
+++ b/NEWS
@@ -1,8 +1,13 @@
-vmod_dict -- history of user-visible changes. 2018-12-10
+vmod_dict -- history of user-visible changes. 2020-03-03
See the end of file for copying conditions.
Please send vmod_dict bug reports to <gray@gnu.org>
+Version 1.3, 2020-03-03
+
+* Support for Varnish 6.3.1
+
+
Version 1.2, 2018-12-10
* Support for Varnish 6.0.2
@@ -19,7 +24,7 @@ Initial release
=========================================================================
Copyright information:
-Copyright (C) 2017-2018 Sergey Poznyakoff
+Copyright (C) 2017-2020 Sergey Poznyakoff
Permission is granted to anyone to make or distribute verbatim copies
of this document as received, in any medium, provided that the
diff --git a/configure.ac b/configure.ac
index 1054289..1dc3887 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
# This file is part of vmod_dict.
-# Copyright (C) 2017-2018 Sergey Poznyakoff
+# Copyright (C) 2017-2020 Sergey Poznyakoff
#
# Vmod_dict is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -15,7 +15,7 @@
# along with vmod_dict. If not, see <http://www.gnu.org/licenses/>.
AC_PREREQ(2.69)
-AC_INIT([vmod-dict], [1.2], [gray@gnu.org])
+AC_INIT([vmod-dict], [1.3], [gray@gnu.org])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR(src/vmod_dict.vcc)
@@ -45,7 +45,7 @@ AC_HEADER_STDC
# Check for functions
-AM_VARNISHAPI([4.1],[6.0.9])
+AM_VARNISHAPI([4.1],[6.3.1])
AC_DEFINE_UNQUOTED([VARNISHAPI_MAJOR],[$VARNISHAPI_MAJOR],
[Varnish API major version number])
diff --git a/src/vmod_dict.c b/src/vmod_dict.c
index f9114d1..81f35e2 100644
--- a/src/vmod_dict.c
+++ b/src/vmod_dict.c
@@ -1,5 +1,5 @@
/* This file is part of vmod_dict.
- Copyright (C) 2017-2018 Sergey Poznyakoff
+ Copyright (C) 2017-2020 Sergey Poznyakoff
Vmod_dict is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -374,7 +374,7 @@ fill_table(void)
}
int
-dict_event(VRT_CTX, struct vmod_priv *priv, enum vcl_event_e e)
+vmod_dict_event(VRT_CTX, struct vmod_priv *priv, enum vcl_event_e e)
{
switch (e) {
case VCL_EVENT_LOAD:
diff --git a/src/vmod_dict.vcc b/src/vmod_dict.vcc
index 5e80a02..c5599a0 100644
--- a/src/vmod_dict.vcc
+++ b/src/vmod_dict.vcc
@@ -1,4 +1,4 @@
-$Module dict 3 Dictionary look-up for Varnish Cache
+$Module dict 3 "Dictionary look-up for Varnish Cache"
DESCRIPTION
===========

Return to:

Send suggestions and report system problems to the System administrator.