summaryrefslogtreecommitdiff
path: root/luxio
diff options
context:
space:
mode:
authorRob Kendrick (humdrum) <rjek@rjek.com>2012-05-04 10:13:47 +0100
committerRob Kendrick (humdrum) <rjek@rjek.com>2012-05-04 10:13:47 +0100
commit777305aff31c321a85717aa198e196ffc1a5eecd (patch)
treef3f03e437c7bc60dd7375bb8bec258d0f062b54d /luxio
parent5c1ea8d4acd7916d3b1542ac0664eff0ac8955d7 (diff)
downloadluxio-777305aff31c321a85717aa198e196ffc1a5eecd.tar.gz
Make SIO release same as parent luxio release, expose luxio though sio for access to definitions, etc.
Diffstat (limited to 'luxio')
-rw-r--r--luxio/simple.lua6
1 files changed, 4 insertions, 2 deletions
diff --git a/luxio/simple.lua b/luxio/simple.lua
index da3f2ff..a2d18c0 100644
--- a/luxio/simple.lua
+++ b/luxio/simple.lua
@@ -808,7 +808,9 @@ return {
stdout = sio_wrap_mt(l.STDOUT_FILENO, true, "<stdout>"),
stderr = sio_wrap_mt(l.STDERR_FILENO, true, "<stderr>"),
- _VERSION = "Luxio Simple Interface 0",
+ luxio = l,
+
+ _VERSION = "Luxio Simple Interface " .. tostring(l._RELEASE),
_COPYRIGHT = "Copyright 2012 Rob Kendrick <rjek+luxio@rjek.com>",
- _RELEASE = 0
+ _RELEASE = l._RELEASE
} \ No newline at end of file