From a5c8be9dc606ad4cbde5431b9ef2e16fa7bf526d Mon Sep 17 00:00:00 2001 From: leaf corcoran Date: Fri, 2 Oct 2020 15:04:31 -0700 Subject: [PATCH] update rockspec, remove 5.4 limitation --- date-2.1.2-2.rockspec => date-2.1.2-3.rockspec | 4 ++-- src/date.lua | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) rename date-2.1.2-2.rockspec => date-2.1.2-3.rockspec (93%) diff --git a/date-2.1.2-2.rockspec b/date-2.1.2-3.rockspec similarity index 93% rename from date-2.1.2-2.rockspec rename to date-2.1.2-3.rockspec index 2e8984f..6b38779 100644 --- a/date-2.1.2-2.rockspec +++ b/date-2.1.2-3.rockspec @@ -1,5 +1,5 @@ package = "date" -version = "2.1.2-2" +version = "2.1.2-3" description = { summary = "Date & Time module for Lua 5.x", @@ -13,7 +13,7 @@ description = { } dependencies = { - "lua >= 5.0, < 5.4 " + "lua >= 5.0, < 5.5" } source = { diff --git a/src/date.lua b/src/date.lua index b5964ab..878feee 100644 --- a/src/date.lua +++ b/src/date.lua @@ -1,7 +1,7 @@ --------------------------------------------------------------------------------------- -- Module for date and time calculations -- --- Version 2.1.1 +-- Version 2.1.2 -- Copyright (C) 2006, by Jas Latrix (jastejada@yahoo.com) -- Copyright (C) 2013-2014, by Thijs Schreijer -- Licensed under MIT, http://opensource.org/licenses/MIT @@ -196,7 +196,7 @@ local date = {} setmetatable(date, date) -- Version: VMMMRRRR; V-Major, M-Minor, R-Revision; e.g. 5.45.321 == 50450321 - date.version = 20010001 -- 2.1.1 + date.version = 20010002 -- 2.1.2 --#end -- not DATE_OBJECT_AFX --[[ THE DATE OBJECT ]]-- local dobj = {}