update rockspec, remove 5.4 limitation

This commit is contained in:
leaf corcoran
2020-10-02 15:04:31 -07:00
committed by Thijs Schreijer
parent c5d1718769
commit a5c8be9dc6
2 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
package = "date" package = "date"
version = "2.1.2-2" version = "2.1.2-3"
description = { description = {
summary = "Date & Time module for Lua 5.x", summary = "Date & Time module for Lua 5.x",
@@ -13,7 +13,7 @@ description = {
} }
dependencies = { dependencies = {
"lua >= 5.0, < 5.4 " "lua >= 5.0, < 5.5"
} }
source = { source = {

View File

@@ -1,7 +1,7 @@
--------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------
-- Module for date and time calculations -- 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) 2006, by Jas Latrix (jastejada@yahoo.com)
-- Copyright (C) 2013-2014, by Thijs Schreijer -- Copyright (C) 2013-2014, by Thijs Schreijer
-- Licensed under MIT, http://opensource.org/licenses/MIT -- Licensed under MIT, http://opensource.org/licenses/MIT
@@ -196,7 +196,7 @@
local date = {} local date = {}
setmetatable(date, date) setmetatable(date, date)
-- Version: VMMMRRRR; V-Major, M-Minor, R-Revision; e.g. 5.45.321 == 50450321 -- 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 --#end -- not DATE_OBJECT_AFX
--[[ THE DATE OBJECT ]]-- --[[ THE DATE OBJECT ]]--
local dobj = {} local dobj = {}