diff options
| author | s-ol <s+removethis@s-ol.nu> | 2026-04-13 18:06:13 +0000 |
|---|---|---|
| committer | s-ol <s+removethis@s-ol.nu> | 2026-04-13 18:06:40 +0000 |
| commit | c7646e26c8b47a9916e48122f040d2a30f129409 (patch) | |
| tree | 991adb77cf18a435263acfad6476dd458e2fa2a8 | |
| parent | implement callbacks (diff) | |
| download | lua-abletonlink-c7646e26c8b47a9916e48122f040d2a30f129409.tar.gz lua-abletonlink-c7646e26c8b47a9916e48122f040d2a30f129409.zip | |
bump version to 1.1.0
| -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; |
