summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOscar Lim <olim@ucla.edu>2016-04-10 00:27:59 -0700
committerOscar Lim <olim@ucla.edu>2016-04-10 00:27:59 -0700
commit67e5f4ff685bee3fa381db6f50be3506ad0b5e76 (patch)
tree8b4ef98229bcffde298a688d7c218dc0ae1ea037
parent785ede5180cc5326eae126d83ad014bd5d8b2c23 (diff)
downloadluasystem-67e5f4ff685bee3fa381db6f50be3506ad0b5e76.zip
Release v0.1.1v0.1.1
-rw-r--r--luasystem-0.1.1-0.rockspec (renamed from luasystem-0.1.0-0.rockspec)6
-rw-r--r--src/core.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/luasystem-0.1.0-0.rockspec b/luasystem-0.1.1-0.rockspec
index a1a322f..40c8b74 100644
--- a/luasystem-0.1.0-0.rockspec
+++ b/luasystem-0.1.1-0.rockspec
@@ -1,8 +1,8 @@
package = 'luasystem'
-version = '0.1.0-0'
+version = '0.1.1-0'
source = {
- url = "https://github.com/o-lim/luasystem/archive/v0.1.0.tar.gz",
- dir = "luasystem-0.1.0"
+ url = "https://github.com/o-lim/luasystem/archive/v0.1.1.tar.gz",
+ dir = "luasystem-0.1.1"
}
description = {
summary = 'Platform independent system calls for Lua.',
diff --git a/src/core.c b/src/core.c
index 31e768b..c35fba5 100644
--- a/src/core.c
+++ b/src/core.c
@@ -1,7 +1,7 @@
#include <lua.h>
#include <lauxlib.h>
-#define LUASYSTEM_VERSION "LuaSystem 0.1.0"
+#define LUASYSTEM_VERSION "LuaSystem 0.1.1"
#ifdef _WIN32
#define LUAEXPORT __declspec(dllexport)