Skip to content

Commit

Permalink
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
@@ -57,7 +57,7 @@
# The short X.Y version.
version = '8.3'
# The full version, including alpha/beta/rc tags.
release = '8.3.16'
release = '8.3.17'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
@@ -338,5 +338,6 @@






4 changes: 2 additions & 2 deletions src/Version.lua
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
local M={}
function M.tag() return "8.3.16" end
function M.tag() return "8.3.17" 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 "2020-06-19 10:31 -05:00" end
function M.date() return "2020-06-20 12:34 -05:00" end
function M.name()
local a = {}
a[#a+1] = M.tag()

0 comments on commit 4d10a9f

Please sign in to comment.