reverted to already published rockspec

This commit is contained in:
Thijs Schreijer
2014-01-02 14:34:22 +01:00
parent c5eaf756ec
commit b1d874b09a
2 changed files with 9 additions and 5 deletions

View File

@@ -11,7 +11,11 @@ Lua Date and Time module for Lua 5.x.
* Local time support. * Local time support.
* Lua module (not binary). * Lua module (not binary).
* Formats Date and Time like strftime. * Formats Date and Time like strftime.
## Tests
Tests are located in the `spec` directory and can be run using [busted](http://olivinelabs.com/busted/).
##Changes: ##Changes:
- v2.1.1 fix for '>=' operator, initial setup of test suite - v2.1.1 fix for '>=' operator, initial setup of test suite

View File

@@ -1,10 +1,10 @@
package = "date" package = "date"
version = "2.1.0-1" version = "2.1.0-2"
description = { description = {
summary = "Date & Time module for Lua 5.1/5.2", summary = "Date & Time module for Lua 5.x",
detailed = [[ detailed = [[
Pure Lua Date & Time module for Lua 5.1/5.2 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.
]], ]],
@@ -13,7 +13,7 @@ description = {
} }
dependencies = { dependencies = {
"lua >= 5.1, <= 5.2" "lua >= 5.0, < 5.3 "
} }
source = { source = {