release 2.1.3

This commit is contained in:
Thijs Schreijer
2020-11-21 09:07:33 +01:00
parent fc52f2bbf2
commit cd8f6d40e9
4 changed files with 7 additions and 5 deletions

31
date-2.1.3-1.rockspec Normal file
View File

@@ -0,0 +1,31 @@
package = "date"
version = "2.1.3-1"
description = {
summary = "Date & Time module for Lua 5.x",
detailed = [[
Pure Lua Date & Time module for Lua 5.x featuring date and time string
parsing, time addition & subtraction, time span calculation, support for
ISO 8601 dates, local time support, strftime-like formatting.
]],
license = "MIT",
homepage = "https://github.com/Tieske/date",
}
dependencies = {
"lua >= 5.0, < 5.5"
}
source = {
url = "git://github.com/Tieske/date/",
tag = "version_2.1.3",
}
build = {
type = "builtin",
modules = {
date = "src/date.lua"
},
copy_directories = { "docs" },
}