From a12c39a6f3687d2ce4e823bd008be9f1e279a9da Mon Sep 17 00:00:00 2001 From: Nicolas Favre-Felix Date: Fri, 22 Oct 2021 17:54:44 -0700 Subject: [PATCH] Release 0.1.18 New feature: support for SSL connections to Redis. Webdis can now connect securely to Redis, thanks to the Hiredis client library. Docker images for Webdis will now contain two binaries, "webdis" and "webdis-ssl", the latter depending on OpenSSL. See Webdis README for details: https://github.com/nicolasff/webdis#configuring-webdis-with-ssl --- src/version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/version.h b/src/version.h index 1e95efb..ab38b96 100644 --- a/src/version.h +++ b/src/version.h @@ -2,7 +2,7 @@ #define VERSION_H #ifndef WEBDIS_VERSION -#define WEBDIS_VERSION "0.1.18-dev" +#define WEBDIS_VERSION "0.1.18" #endif #endif /* VERSION_H */