diff --git a/CHANGELOG b/CHANGELOG index 0a55435..c3e3870 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,5 @@ -------------------------------------------------------------------------------- -LuaSec 0.6a +LuaSec 0.6 ------------ 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/INSTALL b/INSTALL index da1ad93..affefed 100644 --- a/INSTALL +++ b/INSTALL @@ -1,9 +1,9 @@ -LuaSec 0.6a +LuaSec 0.6 ------------ * OpenSSL options: - By default, LuaSec 0.6a includes options for OpenSSL 1.0.1e. + By default, LuaSec 0.6 includes options for OpenSSL 1.0.2f. If you need to generate the options for a different version of OpenSSL: diff --git a/LICENSE b/LICENSE index baf4f85..b92b425 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -LuaSec 0.6a license +LuaSec 0.6 license Copyright (C) 2006-2015 Bruno Silvestre, UFG Permission is hereby granted, free of charge, to any person obtaining diff --git a/README.md b/README.md index 524fced..dc89cbe 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -LuaSec 0.6a +LuaSec 0.6 ========== LuaSec depends on OpenSSL, and integrates with LuaSocket to make it easy to add secure connections to any Lua applications or scripts. @@ -29,4 +29,8 @@ This version includes: * Some bug fixes -=> Thanks to everyone who collaborate with LuaSec <= +******************************************************************************** + +PS: 10th anniversary! Thanks to everyone who collaborate with LuaSec. + +******************************************************************************** diff --git a/luasec-0.6alpha-3.rockspec b/luasec-0.6-1.rockspec similarity index 98% rename from luasec-0.6alpha-3.rockspec rename to luasec-0.6-1.rockspec index f81b9b9..1114ce5 100644 --- a/luasec-0.6alpha-3.rockspec +++ b/luasec-0.6-1.rockspec @@ -1,8 +1,8 @@ package = "LuaSec" -version = "0.6alpha-3" +version = "0.6-1" source = { url = "git://github.com/brunoos/luasec.git", - tag = "luasec-0.6alpha" + tag = "luasec-0.6" } description = { summary = "A binding for OpenSSL library to provide TLS/SSL communication over LuaSocket.", diff --git a/src/config.h b/src/config.h index cae1165..535a85e 100644 --- a/src/config.h +++ b/src/config.h @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- - * LuaSec 0.6a - * Copyright (C) 2006-2015 Bruno Silvestre + * LuaSec 0.6 + * Copyright (C) 2006-2016 Bruno Silvestre * *--------------------------------------------------------------------------*/ diff --git a/src/context.c b/src/context.c index 1c1c148..22f43b7 100644 --- a/src/context.c +++ b/src/context.c @@ -1,9 +1,9 @@ /*-------------------------------------------------------------------------- - * LuaSec 0.6a + * LuaSec 0.6 * - * Copyright (C) 2014 Kim Alvefur, Paul Aurich, Tobias Markmann, - * Matthew Wild. - * Copyright (C) 2006-2015 Bruno Silvestre. + * Copyright (C) 2014-2016 Kim Alvefur, Paul Aurich, Tobias Markmann, + * Matthew Wild. + * Copyright (C) 2006-2016 Bruno Silvestre. * *--------------------------------------------------------------------------*/ diff --git a/src/context.h b/src/context.h index 07cc575..4b92ffe 100644 --- a/src/context.h +++ b/src/context.h @@ -2,8 +2,8 @@ #define LSEC_CONTEXT_H /*-------------------------------------------------------------------------- - * LuaSec 0.6a - * Copyright (C) 2006-2015 Bruno Silvestre + * LuaSec 0.6 + * Copyright (C) 2006-2016 Bruno Silvestre * *--------------------------------------------------------------------------*/ diff --git a/src/ec.h b/src/ec.h index efe5344..ea9c7ee 100644 --- a/src/ec.h +++ b/src/ec.h @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- - * LuaSec 0.6a - * Copyright (C) 2006-2015 Bruno Silvestre + * LuaSec 0.6 + * Copyright (C) 2006-2016 Bruno Silvestre * *--------------------------------------------------------------------------*/ diff --git a/src/https.lua b/src/https.lua index 93fc78a..befb72d 100644 --- a/src/https.lua +++ b/src/https.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------- --- LuaSec 0.6a --- Copyright (C) 2009-2015 PUC-Rio +-- LuaSec 0.6 +-- Copyright (C) 2009-2016 PUC-Rio -- -- Author: Pablo Musa -- Author: Tomas Guisasola @@ -18,8 +18,8 @@ local try = socket.try -- Module -- local _M = { - _VERSION = "0.6a", - _COPYRIGHT = "LuaSec 0.6a - Copyright (C) 2009-2015 PUC-Rio", + _VERSION = "0.6", + _COPYRIGHT = "LuaSec 0.6 - Copyright (C) 2009-2016 PUC-Rio", PORT = 443, } diff --git a/src/options.h b/src/options.h index 52d068c..67e9bb8 100644 --- a/src/options.h +++ b/src/options.h @@ -2,8 +2,8 @@ #define LSEC_OPTIONS_H /*-------------------------------------------------------------------------- - * LuaSec 0.6a - * Copyright (C) 2006-2015 Bruno Silvestre + * LuaSec 0.6 + * Copyright (C) 2006-2016 Bruno Silvestre * *--------------------------------------------------------------------------*/ diff --git a/src/options.lua b/src/options.lua index 8f98b55..6c023ae 100644 --- a/src/options.lua +++ b/src/options.lua @@ -21,8 +21,8 @@ local function generate(options, version) #define LSEC_OPTIONS_H /*-------------------------------------------------------------------------- - * LuaSec 0.6a - * Copyright (C) 2006-2015 Bruno Silvestre + * LuaSec 0.6 + * Copyright (C) 2006-2016 Bruno Silvestre * *--------------------------------------------------------------------------*/ diff --git a/src/ssl.c b/src/ssl.c index 28a9371..d2b495d 100644 --- a/src/ssl.c +++ b/src/ssl.c @@ -1,9 +1,9 @@ /*-------------------------------------------------------------------------- - * LuaSec 0.6a + * LuaSec 0.6 * - * Copyright (C) 2014 Kim Alvefur, Paul Aurich, Tobias Markmann, - * Matthew Wild. - * Copyright (C) 2006-2015 Bruno Silvestre. + * Copyright (C) 2014-2016 Kim Alvefur, Paul Aurich, Tobias Markmann, + * Matthew Wild. + * Copyright (C) 2006-2016 Bruno Silvestre. * *--------------------------------------------------------------------------*/ @@ -757,7 +757,7 @@ static int meth_getsniname(lua_State *L) static int meth_copyright(lua_State *L) { - lua_pushstring(L, "LuaSec 0.6a - Copyright (C) 2006-2015 Bruno Silvestre, UFG" + lua_pushstring(L, "LuaSec 0.6 - Copyright (C) 2006-2016 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 f17286b..fb0ebdc 100644 --- a/src/ssl.h +++ b/src/ssl.h @@ -2,8 +2,8 @@ #define LSEC_SSL_H /*-------------------------------------------------------------------------- - * LuaSec 0.6a - * Copyright (C) 2006-2015 Bruno Silvestre + * LuaSec 0.6 + * Copyright (C) 2006-2016 Bruno Silvestre * *--------------------------------------------------------------------------*/ diff --git a/src/ssl.lua b/src/ssl.lua index dcb3096..8ea2b2b 100644 --- a/src/ssl.lua +++ b/src/ssl.lua @@ -1,6 +1,6 @@ ------------------------------------------------------------------------------ --- LuaSec 0.6a --- Copyright (C) 2006-2015 Bruno Silvestre +-- LuaSec 0.6 +-- Copyright (C) 2006-2016 Bruno Silvestre -- ------------------------------------------------------------------------------ @@ -169,7 +169,7 @@ core.setmethod("info", info) -- local _M = { - _VERSION = "0.6a", + _VERSION = "0.6", _COPYRIGHT = core.copyright(), loadcertificate = x509.load, newcontext = newcontext, diff --git a/src/x509.c b/src/x509.c index a519dfa..49f9a5f 100644 --- a/src/x509.c +++ b/src/x509.c @@ -1,7 +1,7 @@ /*-------------------------------------------------------------------------- - * LuaSec 0.6a + * LuaSec 0.6 * - * Copyright (C) 2014-2015 Kim Alvefur, Paul Aurich, Tobias Markmann + * Copyright (C) 2014-2016 Kim Alvefur, Paul Aurich, Tobias Markmann * Matthew Wild, Bruno Silvestre. * *--------------------------------------------------------------------------*/ diff --git a/src/x509.h b/src/x509.h index 2109ad2..cced0e5 100644 --- a/src/x509.h +++ b/src/x509.h @@ -1,7 +1,7 @@ /*-------------------------------------------------------------------------- - * LuaSec 0.6a + * LuaSec 0.6 * - * Copyright (C) 2014-2015 Kim Alvefur, Paul Aurich, Tobias Markmann + * Copyright (C) 2014-2016 Kim Alvefur, Paul Aurich, Tobias Markmann * Matthew Wild, Bruno Silvestre. * *--------------------------------------------------------------------------*/