Skip to content

Commit

Permalink
Merge 10e09a8 into b3c3cba
Browse files Browse the repository at this point in the history
  • Loading branch information
leafo committed Oct 2, 2020
2 parents b3c3cba + 10e09a8 commit aa6858f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -5,6 +5,7 @@ env:
- LUA="lua 5.1"
- LUA="lua 5.2"
- LUA="lua 5.3"
- LUA="lua 5.4"
- LUA="luajit 2.0"
- LUA="luajit 2.0 --compat 5.2"
- LUA="luajit 2.1"
Expand Down
4 changes: 2 additions & 2 deletions date-2.1.2-2.rockspec → 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",
Expand All @@ -13,7 +13,7 @@ description = {
}

dependencies = {
"lua >= 5.0, < 5.4 "
"lua >= 5.0, < 5.5"
}

source = {
Expand Down
4 changes: 2 additions & 2 deletions 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
Expand Down Expand Up @@ -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 = {}
Expand Down

0 comments on commit aa6858f

Please sign in to comment.