diff --git a/docs/source/conf.py b/docs/source/conf.py index f34b00788..86ba5d40f 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -57,7 +57,7 @@ # The short X.Y version. version = '8.1' # The full version, including alpha/beta/rc tags. -release = '8.1.13' +release = '8.1.14' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -303,5 +303,6 @@ + diff --git a/src/Version.lua b/src/Version.lua index 261d4a2d0..5a0fa2d9d 100644 --- a/src/Version.lua +++ b/src/Version.lua @@ -1,12 +1,12 @@ local M={} -function M.tag() return "8.1.13" end +function M.tag() return "8.1.14" end function M.git() local s = "@git@" if (s == "@" .. "git@") then s = "" end if (s == "("..M.tag()..")") then s = "" end return s end -function M.date() return "2019-08-07 12:27 -05:00" end +function M.date() return "2019-08-15 16:21 -05:00" end function M.name() local a = {} a[#a+1] = M.tag()