From cd8f6d40e9f232564da4191c8c10f49e70a5aa61 Mon Sep 17 00:00:00 2001 From: Thijs Schreijer Date: Sat, 21 Nov 2020 09:07:33 +0100 Subject: [PATCH] release 2.1.3 --- .gitignore | 1 + README.md | 3 ++- date-2.1.2-3.rockspec => date-2.1.3-1.rockspec | 6 +++--- src/date.lua | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) rename date-2.1.2-3.rockspec => date-2.1.3-1.rockspec (82%) diff --git a/.gitignore b/.gitignore index 4ef5f66..52b5668 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .DS_store luacov.* +*.rock diff --git a/README.md b/README.md index 878fa69..6740db6 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,8 @@ Tests are located in the `spec` directory and can be run using [busted](http://o ## 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.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.0 original by Jas Latrix \ No newline at end of file +- v2.0 original by Jas Latrix diff --git a/date-2.1.2-3.rockspec b/date-2.1.3-1.rockspec similarity index 82% rename from date-2.1.2-3.rockspec rename to date-2.1.3-1.rockspec index d8b9aea..484b8f3 100644 --- a/date-2.1.2-3.rockspec +++ b/date-2.1.3-1.rockspec @@ -1,5 +1,5 @@ package = "date" -version = "2.1.2-3" +version = "2.1.3-1" description = { summary = "Date & Time module for Lua 5.x", @@ -17,8 +17,8 @@ dependencies = { } source = { - url = "https://github.com/Tieske/date/archive/version_2.1.2.tar.gz", - dir = "date-version_2.1.2", + url = "git://github.com/Tieske/date/", + tag = "version_2.1.3", } build = { diff --git a/src/date.lua b/src/date.lua index 878feee..c031ab5 100644 --- a/src/date.lua +++ b/src/date.lua @@ -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 = 20010002 -- 2.1.2 + date.version = 20010003 -- 2.1.3 --#end -- not DATE_OBJECT_AFX --[[ THE DATE OBJECT ]]-- local dobj = {}