aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS9
-rw-r--r--configure.ac4
-rw-r--r--src/vmod-sql.c4
-rw-r--r--src/vmod.vcc4
4 files changed, 13 insertions, 8 deletions
diff --git a/NEWS b/NEWS
index 21a89fa..a16e9a3 100644
--- a/NEWS
+++ b/NEWS
@@ -1,8 +1,13 @@
-vmod-sql -- history of user-visible changes. 2018-12-10
+vmod-sql -- history of user-visible changes. 2020-03-03
See the end of file for copying conditions.
Please send vmod-sql bug reports to <gray@gnu.org>
+Version 1.4, 2020-03-03
+
+* Support for Varnish 6.3.1
+
+
Version 1.3, 2018-12-10
* Support for Varnish 6.0.2
@@ -30,7 +35,7 @@ Initial release
=========================================================================
Copyright information:
-Copyright (C) 2013-2018 Sergey Poznyakoff
+Copyright (C) 2013-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 8eae691..397bde4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -14,7 +14,7 @@
# You should have received a copy of the GNU General Public License
# along with vmod-sql. If not, see <http://www.gnu.org/licenses/>.
AC_PREREQ(2.69)
-AC_INIT([vmod-sql], 1.3, [gray@gnu.org])
+AC_INIT([vmod-sql], 1.4, [gray@gnu.org])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR(src/vmod-sql.c)
@@ -43,7 +43,7 @@ AC_PROG_MAKE_SET
AC_HEADER_STDC
AC_CHECK_HEADERS([sys/stdlib.h])
-AM_VARNISHAPI([4.1],[6.0.2])
+AM_VARNISHAPI([4.1],[6.3.1])
AC_DEFINE_UNQUOTED([VARNISHAPI_MAJOR],[$VARNISHAPI_MAJOR],
[Varnish API major version number])
diff --git a/src/vmod-sql.c b/src/vmod-sql.c
index 3653f69..3677b2f 100644
--- a/src/vmod-sql.c
+++ b/src/vmod-sql.c
@@ -1,5 +1,5 @@
/* This file is part of vmod-sql
- Copyright (C) 2013-2018 Sergey Poznyakoff
+ Copyright (C) 2013-2020 Sergey Poznyakoff
Vmod-sql is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -121,7 +121,7 @@ make_key()
}
int
-sql_event(VRT_CTX, struct vmod_priv *priv, enum vcl_event_e e)
+vmod_sql_event(VRT_CTX, struct vmod_priv *priv, enum vcl_event_e e)
{
if (e == VCL_EVENT_LOAD) {
pthread_once(&thread_once, make_key);
diff --git a/src/vmod.vcc b/src/vmod.vcc
index f98ee87..30dff68 100644
--- a/src/vmod.vcc
+++ b/src/vmod.vcc
@@ -1,5 +1,5 @@
# This file is part of vmod-sql
-# Copyright (C) 2013-2014 Sergey Poznyakoff
+# Copyright (C) 2013-2020 Sergey Poznyakoff
#
# Vmod-sql is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -14,7 +14,7 @@
# You should have received a copy of the GNU General Public License
# along with vmod-sql. If not, see <http://www.gnu.org/licenses/>.
-$Module sql 3 SQL access functions for Varnish Cache
+$Module sql 3 "SQL access functions for Varnish Cache"
COLOPHON
========

Return to:

Send suggestions and report system problems to the System administrator.