diff options
| -rw-r--r-- | abletonlink-1.1.0-1.rockspec (renamed from abletonlink-1.0.1-1.rockspec) | 4 | ||||
| -rw-r--r-- | abletonlink.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/abletonlink-1.0.1-1.rockspec b/abletonlink-1.1.0-1.rockspec index 0672546..a3bc950 100644 --- a/abletonlink-1.0.1-1.rockspec +++ b/abletonlink-1.1.0-1.rockspec @@ -1,9 +1,9 @@ rockspec_format = "3.0" package = "abletonlink" -version = "1.0.1-1" +version = "1.1.0-1" source = { url = 'git+https://git.s-ol.nu/lua-abletonlink.git', - tag = 'v1.0.1', + tag = 'v1.1.0', } description = { summary = "Ableton Link bindings for Lua", diff --git a/abletonlink.c b/abletonlink.c index c4a280e..f863df6 100644 --- a/abletonlink.c +++ b/abletonlink.c @@ -513,9 +513,9 @@ int luaopen_abletonlink(lua_State* L) { // register luax_register(L, abl_link_session_state_r); lua_pop(L, 1); - - lua_newtable(L); - lua_pushstring(L, "v1.0.0"); + + lua_newtable(L); + lua_pushstring(L, "v1.1.0"); lua_setfield(L, -2, "_VERSION"); luax_register(L, abletonlink); return 1; |
