diff --git a/CHANGELOG b/CHANGELOG index cecd179..60496f3 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,11 @@ +-------------------------------------------------------------------------------- +LuaSec 1.1.0 +--------------- +This version includes: + +* Fix missing DANE flag +* Remove unused parameter in https.lua + -------------------------------------------------------------------------------- LuaSec 1.0.2 --------------- diff --git a/INSTALL b/INSTALL index da421df..f45fc8e 100644 --- a/INSTALL +++ b/INSTALL @@ -1,4 +1,4 @@ -LuaSec 1.0.2 +LuaSec 1.1.0 ------------ * OpenSSL options: diff --git a/LICENSE b/LICENSE index 41d08fd..543bb3d 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ -LuaSec 1.0.2 license -Copyright (C) 2006-2021 Bruno Silvestre, UFG +LuaSec 1.1.0 license +Copyright (C) 2006-2022 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 352ed18..b4f78cd 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -LuaSec 1.0.2 +LuaSec 1.1.0 =============== 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/src/compat.h b/src/compat.h index 1c88de9..110a030 100644 --- a/src/compat.h +++ b/src/compat.h @@ -1,7 +1,7 @@ /*-------------------------------------------------------------------------- - * LuaSec 1.0.2 + * LuaSec 1.1.0 * - * Copyright (C) 2006-2021 Bruno Silvestre + * Copyright (C) 2006-2022 Bruno Silvestre * *--------------------------------------------------------------------------*/ diff --git a/src/config.c b/src/config.c index 6830143..c711838 100644 --- a/src/config.c +++ b/src/config.c @@ -1,7 +1,7 @@ /*-------------------------------------------------------------------------- - * LuaSec 1.0.2 + * LuaSec 1.1.0 * - * Copyright (C) 2006-2021 Bruno Silvestre. + * Copyright (C) 2006-2022 Bruno Silvestre. * *--------------------------------------------------------------------------*/ diff --git a/src/context.c b/src/context.c index d3647ea..388154b 100644 --- a/src/context.c +++ b/src/context.c @@ -1,9 +1,9 @@ /*-------------------------------------------------------------------------- - * LuaSec 1.0.2 + * LuaSec 1.1.0 * - * Copyright (C) 2014-2021 Kim Alvefur, Paul Aurich, Tobias Markmann, + * Copyright (C) 2014-2022 Kim Alvefur, Paul Aurich, Tobias Markmann, * Matthew Wild. - * Copyright (C) 2006-2021 Bruno Silvestre. + * Copyright (C) 2006-2022 Bruno Silvestre. * *--------------------------------------------------------------------------*/ diff --git a/src/context.h b/src/context.h index ae746e8..5e7274a 100644 --- a/src/context.h +++ b/src/context.h @@ -2,9 +2,9 @@ #define LSEC_CONTEXT_H /*-------------------------------------------------------------------------- - * LuaSec 1.0.2 + * LuaSec 1.1.0 * - * Copyright (C) 2006-2021 Bruno Silvestre + * Copyright (C) 2006-2022 Bruno Silvestre * *--------------------------------------------------------------------------*/ diff --git a/src/ec.h b/src/ec.h index 39717ab..8a6c9e4 100644 --- a/src/ec.h +++ b/src/ec.h @@ -1,7 +1,7 @@ /*-------------------------------------------------------------------------- - * LuaSec 1.0.2 + * LuaSec 1.1.0 * - * Copyright (C) 2006-2021 Bruno Silvestre + * Copyright (C) 2006-2022 Bruno Silvestre * *--------------------------------------------------------------------------*/ diff --git a/src/https.lua b/src/https.lua index 17e0546..8e30da9 100644 --- a/src/https.lua +++ b/src/https.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------- --- LuaSec 1.0.2 --- Copyright (C) 2009-2021 PUC-Rio +-- LuaSec 1.1.0 +-- Copyright (C) 2009-2022 PUC-Rio -- -- Author: Pablo Musa -- Author: Tomas Guisasola @@ -18,8 +18,8 @@ local try = socket.try -- Module -- local _M = { - _VERSION = "1.0.2", - _COPYRIGHT = "LuaSec 1.0.2 - Copyright (C) 2009-2021 PUC-Rio", + _VERSION = "1.1.0", + _COPYRIGHT = "LuaSec 1.1.0 - Copyright (C) 2009-2022 PUC-Rio", PORT = 443, TIMEOUT = 60 } diff --git a/src/options.c b/src/options.c index d636f7d..bc05e54 100644 --- a/src/options.c +++ b/src/options.c @@ -1,7 +1,7 @@ /*-------------------------------------------------------------------------- - * LuaSec 1.0.2 + * LuaSec 1.1.0 * - * Copyright (C) 2006-2021 Bruno Silvestre + * Copyright (C) 2006-2022 Bruno Silvestre * *--------------------------------------------------------------------------*/ diff --git a/src/options.h b/src/options.h index cd8bcea..875b5ea 100644 --- a/src/options.h +++ b/src/options.h @@ -2,9 +2,9 @@ #define LSEC_OPTIONS_H /*-------------------------------------------------------------------------- - * LuaSec 1.0.2 + * LuaSec 1.1.0 * - * Copyright (C) 2006-2021 Bruno Silvestre + * Copyright (C) 2006-2022 Bruno Silvestre * *--------------------------------------------------------------------------*/ diff --git a/src/options.lua b/src/options.lua index d9a8801..d14db77 100644 --- a/src/options.lua +++ b/src/options.lua @@ -18,9 +18,9 @@ end local function generate(options, version) print([[ /*-------------------------------------------------------------------------- - * LuaSec 1.1.1 + * LuaSec 1.1.0 * - * Copyright (C) 2006-2021 Bruno Silvestre + * Copyright (C) 2006-2022 Bruno Silvestre * *--------------------------------------------------------------------------*/ diff --git a/src/ssl.c b/src/ssl.c index 598c37c..642272a 100644 --- a/src/ssl.c +++ b/src/ssl.c @@ -1,9 +1,9 @@ /*-------------------------------------------------------------------------- - * LuaSec 1.0.2 + * LuaSec 1.1.0 * - * Copyright (C) 2014-2021 Kim Alvefur, Paul Aurich, Tobias Markmann, + * Copyright (C) 2014-2022 Kim Alvefur, Paul Aurich, Tobias Markmann, * Matthew Wild. - * Copyright (C) 2006-2021 Bruno Silvestre. + * Copyright (C) 2006-2022 Bruno Silvestre. * *--------------------------------------------------------------------------*/ @@ -826,7 +826,7 @@ static int meth_getalpn(lua_State *L) static int meth_copyright(lua_State *L) { - lua_pushstring(L, "LuaSec 1.0.2 - Copyright (C) 2006-2021 Bruno Silvestre, UFG" + lua_pushstring(L, "LuaSec 1.1.0 - Copyright (C) 2006-2022 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 3ee3435..3dd0b27 100644 --- a/src/ssl.h +++ b/src/ssl.h @@ -2,9 +2,9 @@ #define LSEC_SSL_H /*-------------------------------------------------------------------------- - * LuaSec 1.0.2 + * LuaSec 1.1.0 * - * Copyright (C) 2006-2021 Bruno Silvestre + * Copyright (C) 2006-2022 Bruno Silvestre * *--------------------------------------------------------------------------*/ diff --git a/src/ssl.lua b/src/ssl.lua index c71ac27..083d5dc 100644 --- a/src/ssl.lua +++ b/src/ssl.lua @@ -1,7 +1,7 @@ ------------------------------------------------------------------------------ --- LuaSec 1.0.2 +-- LuaSec 1.1.0 -- --- Copyright (C) 2006-2021 Bruno Silvestre +-- Copyright (C) 2006-2022 Bruno Silvestre -- ------------------------------------------------------------------------------ @@ -275,7 +275,7 @@ core.setmethod("info", info) -- local _M = { - _VERSION = "1.0.2", + _VERSION = "1.1.0", _COPYRIGHT = core.copyright(), config = config, loadcertificate = x509.load, diff --git a/src/x509.c b/src/x509.c index 0b05c65..5221bef 100644 --- a/src/x509.c +++ b/src/x509.c @@ -1,7 +1,7 @@ /*-------------------------------------------------------------------------- - * LuaSec 1.0.2 + * LuaSec 1.1.0 * - * Copyright (C) 2014-2021 Kim Alvefur, Paul Aurich, Tobias Markmann + * Copyright (C) 2014-2022 Kim Alvefur, Paul Aurich, Tobias Markmann * Matthew Wild, Bruno Silvestre. * *--------------------------------------------------------------------------*/ diff --git a/src/x509.h b/src/x509.h index ec903d5..7a2c3c6 100644 --- a/src/x509.h +++ b/src/x509.h @@ -1,7 +1,7 @@ /*-------------------------------------------------------------------------- - * LuaSec 1.0.2 + * LuaSec 1.1.0 * - * Copyright (C) 2014-2021 Kim Alvefur, Paul Aurich, Tobias Markmann + * Copyright (C) 2014-2022 Kim Alvefur, Paul Aurich, Tobias Markmann * Matthew Wild, Bruno Silvestre. * *--------------------------------------------------------------------------*/