Skip to content

Commit

Permalink
update Version.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert McLay committed Mar 12, 2024
1 parent a91115f commit 265f169
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Version.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@ function M.branchStr()
return s == "" and s or "[branch: "..s.."]"
end
function M.tag() return "<tag>" end
function M.tag() return "8.7.34" end
function M.git()
local s = "<git_tag>"
local s = "8.7.34-25-g516266fa"
if (s == "@" .. "git@") then s = "" end
if (s == M.tag() ) then s = "" end
return s == "" and s or "("..s..")"
end
function M.date() return "<date>" end
function M.date() return "2024-03-11 18:05 -06:00" end
function M.name()
local a = {}
a[#a+1] = M.tag()
Expand Down

0 comments on commit 265f169

Please sign in to comment.