From 866e55f1ee706f33f33149835277f2592611b56d Mon Sep 17 00:00:00 2001 From: Bruno Silvestre Date: Fri, 16 Aug 2019 10:01:43 -0300 Subject: [PATCH] Update version number: 0.7 -> 0.7.1 --- INSTALL | 4 ++-- LICENSE | 4 ++-- README.md | 2 +- luasec-0.7-1.rockspec => luasec-0.7.1-1.rockspec | 6 +++--- src/compat.h | 4 ++-- src/config.c | 4 ++-- src/context.c | 6 +++--- src/context.h | 4 ++-- src/ec.h | 4 ++-- src/https.lua | 8 ++++---- src/options.h | 4 ++-- src/options.lua | 4 ++-- src/ssl.c | 8 ++++---- src/ssl.h | 4 ++-- src/ssl.lua | 6 +++--- src/x509.c | 4 ++-- src/x509.h | 4 ++-- 17 files changed, 40 insertions(+), 40 deletions(-) rename luasec-0.7-1.rockspec => luasec-0.7.1-1.rockspec (96%) diff --git a/INSTALL b/INSTALL index 7c47db7..265f727 100644 --- a/INSTALL +++ b/INSTALL @@ -1,9 +1,9 @@ -LuaSec 0.7 +LuaSec 0.7.1 ------------ * OpenSSL options: - By default, LuaSec 0.7 includes options for OpenSSL 1.1.0f. + By default, LuaSec 0.7.1 includes options for OpenSSL 1.1.0f. If you need to generate the options for a different version of OpenSSL: diff --git a/LICENSE b/LICENSE index 1e63007..43db1e1 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ -LuaSec 0.7 license -Copyright (C) 2006-2018 Bruno Silvestre, UFG +LuaSec 0.7.1 license +Copyright (C) 2006-2019 Bruno Silvestre, UFG Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/README.md b/README.md index 04dc9f2..b775b0f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -LuaSec 0.7 +LuaSec 0.7.1 =============== LuaSec depends on OpenSSL, and integrates with LuaSocket to make it easy to add secure connections to any Lua applications or scripts. diff --git a/luasec-0.7-1.rockspec b/luasec-0.7.1-1.rockspec similarity index 96% rename from luasec-0.7-1.rockspec rename to luasec-0.7.1-1.rockspec index 572d825..f783cac 100644 --- a/luasec-0.7-1.rockspec +++ b/luasec-0.7.1-1.rockspec @@ -1,8 +1,8 @@ package = "LuaSec" -version = "0.7-1" +version = "0.7.1-1" source = { - url = "https://github.com/brunoos/luasec/archive/luasec-0.7.tar.gz", - dir = "luasec-luasec-0.7" + url = "https://github.com/brunoos/luasec/archive/luasec-0.7.1.tar.gz", + dir = "luasec-luasec-0.7.1" } description = { summary = "A binding for OpenSSL library to provide TLS/SSL communication over LuaSocket.", diff --git a/src/compat.h b/src/compat.h index e3d112b..40a6a66 100644 --- a/src/compat.h +++ b/src/compat.h @@ -1,7 +1,7 @@ /*-------------------------------------------------------------------------- - * LuaSec 0.7 + * LuaSec 0.7.1 * - * Copyright (C) 2006-2018 Bruno Silvestre + * Copyright (C) 2006-2019 Bruno Silvestre * *--------------------------------------------------------------------------*/ diff --git a/src/config.c b/src/config.c index ce74997..67ff472 100644 --- a/src/config.c +++ b/src/config.c @@ -1,7 +1,7 @@ /*-------------------------------------------------------------------------- - * LuaSec 0.7 + * LuaSec 0.7.1 * - * Copyright (C) 2006-2018 Bruno Silvestre. + * Copyright (C) 2006-2019 Bruno Silvestre. * *--------------------------------------------------------------------------*/ diff --git a/src/context.c b/src/context.c index a2b5ae5..fdad4d4 100644 --- a/src/context.c +++ b/src/context.c @@ -1,9 +1,9 @@ /*-------------------------------------------------------------------------- - * LuaSec 0.7 + * LuaSec 0.7.1 * - * Copyright (C) 2014-2018 Kim Alvefur, Paul Aurich, Tobias Markmann, + * Copyright (C) 2014-2019 Kim Alvefur, Paul Aurich, Tobias Markmann, * Matthew Wild. - * Copyright (C) 2006-2018 Bruno Silvestre. + * Copyright (C) 2006-2019 Bruno Silvestre. * *--------------------------------------------------------------------------*/ diff --git a/src/context.h b/src/context.h index a971550..1aa94ed 100644 --- a/src/context.h +++ b/src/context.h @@ -2,9 +2,9 @@ #define LSEC_CONTEXT_H /*-------------------------------------------------------------------------- - * LuaSec 0.7 + * LuaSec 0.7.1 * - * Copyright (C) 2006-2017 Bruno Silvestre + * Copyright (C) 2006-2019 Bruno Silvestre * *--------------------------------------------------------------------------*/ diff --git a/src/ec.h b/src/ec.h index 43b080f..7a08fe2 100644 --- a/src/ec.h +++ b/src/ec.h @@ -1,7 +1,7 @@ /*-------------------------------------------------------------------------- - * LuaSec 0.7 + * LuaSec 0.7.1 * - * Copyright (C) 2006-2018 Bruno Silvestre + * Copyright (C) 2006-2019 Bruno Silvestre * *--------------------------------------------------------------------------*/ diff --git a/src/https.lua b/src/https.lua index d1b708a..783d70b 100644 --- a/src/https.lua +++ b/src/https.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------- --- LuaSec 0.7 --- Copyright (C) 2009-2018 PUC-Rio +-- LuaSec 0.7.1 +-- Copyright (C) 2009-2019 PUC-Rio -- -- Author: Pablo Musa -- Author: Tomas Guisasola @@ -18,8 +18,8 @@ local try = socket.try -- Module -- local _M = { - _VERSION = "0.7", - _COPYRIGHT = "LuaSec 0.7 - Copyright (C) 2009-2018 PUC-Rio", + _VERSION = "0.7.1", + _COPYRIGHT = "LuaSec 0.7.1 - Copyright (C) 2009-2019 PUC-Rio", PORT = 443, } diff --git a/src/options.h b/src/options.h index c4756f8..aab8ecd 100644 --- a/src/options.h +++ b/src/options.h @@ -2,9 +2,9 @@ #define LSEC_OPTIONS_H /*-------------------------------------------------------------------------- - * LuaSec 0.7 + * LuaSec 0.7.1 * - * Copyright (C) 2006-2018 Bruno Silvestre + * Copyright (C) 2006-2019 Bruno Silvestre * *--------------------------------------------------------------------------*/ diff --git a/src/options.lua b/src/options.lua index 743e775..20a8add 100644 --- a/src/options.lua +++ b/src/options.lua @@ -21,9 +21,9 @@ local function generate(options, version) #define LSEC_OPTIONS_H /*-------------------------------------------------------------------------- - * LuaSec 0.7 + * LuaSec 0.7.1 * - * Copyright (C) 2006-2018 Bruno Silvestre + * Copyright (C) 2006-2019 Bruno Silvestre * *--------------------------------------------------------------------------*/ diff --git a/src/ssl.c b/src/ssl.c index 95109c4..6632519 100644 --- a/src/ssl.c +++ b/src/ssl.c @@ -1,9 +1,9 @@ /*-------------------------------------------------------------------------- - * LuaSec 0.7 + * LuaSec 0.7.1 * - * Copyright (C) 2014-2018 Kim Alvefur, Paul Aurich, Tobias Markmann, + * Copyright (C) 2014-2019 Kim Alvefur, Paul Aurich, Tobias Markmann, * Matthew Wild. - * Copyright (C) 2006-2018 Bruno Silvestre. + * Copyright (C) 2006-2019 Bruno Silvestre. * *--------------------------------------------------------------------------*/ @@ -796,7 +796,7 @@ static int meth_getsniname(lua_State *L) static int meth_copyright(lua_State *L) { - lua_pushstring(L, "LuaSec 0.7 - Copyright (C) 2006-2018 Bruno Silvestre, UFG" + lua_pushstring(L, "LuaSec 0.7.1 - Copyright (C) 2006-2019 Bruno Silvestre, UFG" #if defined(WITH_LUASOCKET) "\nLuaSocket 3.0-RC1 - Copyright (C) 2004-2013 Diego Nehab" #endif diff --git a/src/ssl.h b/src/ssl.h index f5618d1..06e235a 100644 --- a/src/ssl.h +++ b/src/ssl.h @@ -2,9 +2,9 @@ #define LSEC_SSL_H /*-------------------------------------------------------------------------- - * LuaSec 0.7 + * LuaSec 0.7.1 * - * Copyright (C) 2006-2018 Bruno Silvestre + * Copyright (C) 2006-2019 Bruno Silvestre * *--------------------------------------------------------------------------*/ diff --git a/src/ssl.lua b/src/ssl.lua index 3bd236b..b9e65df 100644 --- a/src/ssl.lua +++ b/src/ssl.lua @@ -1,7 +1,7 @@ ------------------------------------------------------------------------------ --- LuaSec 0.7 +-- LuaSec 0.7.1 -- --- Copyright (C) 2006-2018 Bruno Silvestre +-- Copyright (C) 2006-2019 Bruno Silvestre -- ------------------------------------------------------------------------------ @@ -179,7 +179,7 @@ core.setmethod("info", info) -- local _M = { - _VERSION = "0.7", + _VERSION = "0.7.1", _COPYRIGHT = core.copyright(), loadcertificate = x509.load, newcontext = newcontext, diff --git a/src/x509.c b/src/x509.c index 55b7e54..2661b29 100644 --- a/src/x509.c +++ b/src/x509.c @@ -1,7 +1,7 @@ /*-------------------------------------------------------------------------- - * LuaSec 0.7 + * LuaSec 0.7.1 * - * Copyright (C) 2014-2018 Kim Alvefur, Paul Aurich, Tobias Markmann + * Copyright (C) 2014-2019 Kim Alvefur, Paul Aurich, Tobias Markmann * Matthew Wild, Bruno Silvestre. * *--------------------------------------------------------------------------*/ diff --git a/src/x509.h b/src/x509.h index 026f526..66861bb 100644 --- a/src/x509.h +++ b/src/x509.h @@ -1,7 +1,7 @@ /*-------------------------------------------------------------------------- - * LuaSec 0.7 + * LuaSec 0.7.1 * - * Copyright (C) 2014-2018 Kim Alvefur, Paul Aurich, Tobias Markmann + * Copyright (C) 2014-2019 Kim Alvefur, Paul Aurich, Tobias Markmann * Matthew Wild, Bruno Silvestre. * *--------------------------------------------------------------------------*/