summaryrefslogtreecommitdiff
path: root/lib/gall.lua
blob: 4a2dbb8326d284f479884fe58e3cd2a571ed106e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
-- gall.lua
--
-- Git Abstration Layer for Lua -- Top level
--
-- Copyright 2012 Daniel Silverstone <dsilvers@digital-scurf.org>
--

local API_VERSION = 0
local ABI_VERSION = 0

local VERSION = "Gall v1." .. tostring(API_VERSION)

return {
   _API_VERSION = API_VERSION,
   _ABI_VERSION = ABI_VERSION,
   VERSION = VERSION,
}