mirror of
https://github.com/TangentFoxy/lua-date.git
synced 2025-07-28 11:02:17 +00:00
notation fix and 5.3 ready
This commit is contained in:
@@ -28,6 +28,7 @@ Tests are located in the `spec` directory and can be run using [busted](http://o
|
|||||||
|
|
||||||
##Changes:
|
##Changes:
|
||||||
|
|
||||||
|
- 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,24 +1,24 @@
|
|||||||
package = "date"
|
package = "date"
|
||||||
version = "2.1.1-1"
|
version = "2.1.2-1"
|
||||||
|
|
||||||
description = {
|
description = {
|
||||||
summary = "Date & Time module for Lua 5.x",
|
summary = "Date & Time module for Lua 5.x",
|
||||||
detailed = [[
|
detailed = [[
|
||||||
Pure Lua Date & Time module for Lua 5.x featuring date and Time string
|
Pure Lua Date & Time module for Lua 5.x featuring date and time string
|
||||||
parsing, time addition & subtraction, time span calculation, support for
|
parsing, time addition & subtraction, time span calculation, support for
|
||||||
ISO 8601 Dates, local time support, strftime-like formatting.
|
ISO 8601 dates, local time support, strftime-like formatting.
|
||||||
]],
|
]],
|
||||||
license = "MIT",
|
license = "MIT",
|
||||||
homepage = "https://github.com/Tieske/date",
|
homepage = "https://github.com/Tieske/date",
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies = {
|
dependencies = {
|
||||||
"lua >= 5.0, < 5.3 "
|
"lua >= 5.0, < 5.4 "
|
||||||
}
|
}
|
||||||
|
|
||||||
source = {
|
source = {
|
||||||
url = "https://github.com/Tieske/date/archive/version_2.1.1.tar.gz",
|
url = "https://github.com/Tieske/date/archive/version_2.1.2.tar.gz",
|
||||||
dir = "date-version_2.1.1",
|
dir = "date-version_2.1.2",
|
||||||
}
|
}
|
||||||
|
|
||||||
build = {
|
build = {
|
||||||
|
Reference in New Issue
Block a user