Skip to content

Commit

Permalink
moving to TAG_VERSION 8.7.38
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert McLay committed Jun 2, 2024
1 parent ac0aa97 commit c561bd6
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .versionDate
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024-03-19 16:11 -06:00
2024-06-02 10:42 -05:00
3 changes: 2 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
# The short X.Y version.
version = '8.7'
# The full version, including alpha/beta/rc tags.
release = '8.7.37'
release = '8.7.38'

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






14 changes: 10 additions & 4 deletions settarg/Version.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,26 @@ function M.branchStr()
end
return s == "" and s or "[branch: "..s.."]"
end
function M.tag() return "8.7.37" end
function M.tag() return "8.7.38" end
function M.git()
local s = "8.7.37"
local s = "8.7.38"
if (s == "@" .. "git@") then s = "" end
if (s == M.tag() ) then s = "" end
return s == "" and s or "("..s..")"
end
function M.date() return "2024-03-17 13:11 -06:00" end
function M.date() return "2024-06-02 10:42 -05:00" end
function M.name()
local a = {}
a[#a+1] = M.tag()
a[#a+1] = M.git()
a[#a+1] = M.branchStr()
a[#a+1] = M.date()
return table.concat(a," ")
local b = {}
for i = 1,#a do
if (a[i] ~= "") then
b[#b+1] = a[i]
end
end
return table.concat(b," ")
end
return M
14 changes: 10 additions & 4 deletions src/Version.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,26 @@ function M.branchStr()
end
return s == "" and s or "[branch: "..s.."]"
end
function M.tag() return "8.7.37" end
function M.tag() return "8.7.38" end
function M.git()
local s = "8.7.37"
local s = "8.7.38"
if (s == "@" .. "git@") then s = "" end
if (s == M.tag() ) then s = "" end
return s == "" and s or "("..s..")"
end
function M.date() return "2024-03-17 13:11 -06:00" end
function M.date() return "2024-06-02 10:42 -05:00" end
function M.name()
local a = {}
a[#a+1] = M.tag()
a[#a+1] = M.git()
a[#a+1] = M.branchStr()
a[#a+1] = M.date()
return table.concat(a," ")
local b = {}
for i = 1,#a do
if (a[i] ~= "") then
b[#b+1] = a[i]
end
end
return table.concat(b," ")
end
return M

0 comments on commit c561bd6

Please sign in to comment.