mirror of
https://github.com/TangentFoxy/lua-date.git
synced 2025-07-27 18:42:18 +00:00
release 2.1.3
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,2 +1,3 @@
|
|||||||
.DS_store
|
.DS_store
|
||||||
luacov.*
|
luacov.*
|
||||||
|
*.rock
|
||||||
|
@@ -29,7 +29,8 @@ Tests are located in the `spec` directory and can be run using [busted](http://o
|
|||||||
|
|
||||||
## Changes:
|
## Changes:
|
||||||
|
|
||||||
|
- v2.1.3 fix rockspec for Lua 5.4
|
||||||
- v2.1.2 fix scientific notation [#9](https://github.com/Tieske/date/pull/9), now available for Lua 5.3
|
- v2.1.2 fix scientific notation [#9](https://github.com/Tieske/date/pull/9), now available for Lua 5.3
|
||||||
- v2.1.1 fix for '>=' operator [#3](https://github.com/Tieske/date/pull/3), added test suite, added Travis CI, license MIT
|
- v2.1.1 fix for '>=' operator [#3](https://github.com/Tieske/date/pull/3), added test suite, added Travis CI, license MIT
|
||||||
- v2.1 Lua 5.2 support. Global 'date' will no longer be set.
|
- v2.1 Lua 5.2 support. Global 'date' will no longer be set.
|
||||||
- v2.0 original by Jas Latrix
|
- v2.0 original by Jas Latrix
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
package = "date"
|
package = "date"
|
||||||
version = "2.1.2-3"
|
version = "2.1.3-1"
|
||||||
|
|
||||||
description = {
|
description = {
|
||||||
summary = "Date & Time module for Lua 5.x",
|
summary = "Date & Time module for Lua 5.x",
|
||||||
@@ -17,8 +17,8 @@ dependencies = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
source = {
|
source = {
|
||||||
url = "https://github.com/Tieske/date/archive/version_2.1.2.tar.gz",
|
url = "git://github.com/Tieske/date/",
|
||||||
dir = "date-version_2.1.2",
|
tag = "version_2.1.3",
|
||||||
}
|
}
|
||||||
|
|
||||||
build = {
|
build = {
|
@@ -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 = 20010002 -- 2.1.2
|
date.version = 20010003 -- 2.1.3
|
||||||
--#end -- not DATE_OBJECT_AFX
|
--#end -- not DATE_OBJECT_AFX
|
||||||
--[[ THE DATE OBJECT ]]--
|
--[[ THE DATE OBJECT ]]--
|
||||||
local dobj = {}
|
local dobj = {}
|
||||||
|
Reference in New Issue
Block a user