summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2012-07-18 12:46:01 +0100
committerDaniel Silverstone <dsilvers@digital-scurf.org>2012-07-18 12:46:01 +0100
commit1d6a4c6c4983a8c99602eb077e9c2632357c8d3b (patch)
tree8d7387bf45529b2a05c59f3d2af0acc2a3be3c84
parentf4bbb7e94454e79a6b7d28c3d3389e10d4bf3ffb (diff)
downloadlace-1d6a4c6c4983a8c99602eb077e9c2632357c8d3b.tar.gz
Add an ABI marker to lace.lua
-rw-r--r--lib/lace.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/lace.lua b/lib/lace.lua
index ba73af7..c4759a0 100644
--- a/lib/lace.lua
+++ b/lib/lace.lua
@@ -14,6 +14,7 @@ local engine = require "lace.engine"
local error = require 'lace.error'
local _VERSION = 0
+local _ABI = 1
local VERSION = "Lace Version " .. tostring(_VERSION)
@@ -25,4 +26,6 @@ return {
error = error,
_VERSION = _VERSION,
VERSION = VERSION,
+ _ABI = _ABI,
+ ABI = ABI,
}