From c7646e26c8b47a9916e48122f040d2a30f129409 Mon Sep 17 00:00:00 2001 From: s-ol Date: Mon, 13 Apr 2026 20:06:13 +0200 Subject: bump version to 1.1.0 --- abletonlink-1.0.1-1.rockspec | 63 -------------------------------------------- abletonlink-1.1.0-1.rockspec | 63 ++++++++++++++++++++++++++++++++++++++++++++ abletonlink.c | 6 ++--- 3 files changed, 66 insertions(+), 66 deletions(-) delete mode 100644 abletonlink-1.0.1-1.rockspec create mode 100644 abletonlink-1.1.0-1.rockspec diff --git a/abletonlink-1.0.1-1.rockspec b/abletonlink-1.0.1-1.rockspec deleted file mode 100644 index 0672546..0000000 --- a/abletonlink-1.0.1-1.rockspec +++ /dev/null @@ -1,63 +0,0 @@ -rockspec_format = "3.0" -package = "abletonlink" -version = "1.0.1-1" -source = { - url = 'git+https://git.s-ol.nu/lua-abletonlink.git', - tag = 'v1.0.1', -} -description = { - summary = "Ableton Link bindings for Lua", - detailed = [[ -Lightweight wrapper of the Ableton Link C API (abl_link). - -https://github.com/Ableton/link/tree/master/extensions/abl_link - ]], - homepage = "https://git.s-ol.nu/lua-abletonlink/-/", - license = "GPL-2.0-or-later", -} - -dependencies = { - "lua >= 5.1", -} -build = { - type = 'builtin', - modules = { - -- C module - abletonlink = { - sources = { - 'abletonlink.c', - 'tinycthreads.c', - 'link/extensions/abl_link/src/abl_link.cpp', - }, - incdirs = { - 'link/include', - 'link/extensions/abl_link/include', - 'link/modules/asio-standalone/asio/include', - }, - libraries = {'stdc++'}, - }, - }, - platforms = { - linux = { - modules = { - abletonlink = { - defines = {'LINK_PLATFORM_LINUX'}, - }, - }, - }, - windows = { - modules = { - abletonlink = { - defines = {'LINK_PLATFORM_WINDOWS'}, - }, - }, - }, - macosx = { - modules = { - abletonlink = { - defines = {'LINK_PLATFORM_MACOSX'}, - }, - }, - }, - }, -} diff --git a/abletonlink-1.1.0-1.rockspec b/abletonlink-1.1.0-1.rockspec new file mode 100644 index 0000000..a3bc950 --- /dev/null +++ b/abletonlink-1.1.0-1.rockspec @@ -0,0 +1,63 @@ +rockspec_format = "3.0" +package = "abletonlink" +version = "1.1.0-1" +source = { + url = 'git+https://git.s-ol.nu/lua-abletonlink.git', + tag = 'v1.1.0', +} +description = { + summary = "Ableton Link bindings for Lua", + detailed = [[ +Lightweight wrapper of the Ableton Link C API (abl_link). + +https://github.com/Ableton/link/tree/master/extensions/abl_link + ]], + homepage = "https://git.s-ol.nu/lua-abletonlink/-/", + license = "GPL-2.0-or-later", +} + +dependencies = { + "lua >= 5.1", +} +build = { + type = 'builtin', + modules = { + -- C module + abletonlink = { + sources = { + 'abletonlink.c', + 'tinycthreads.c', + 'link/extensions/abl_link/src/abl_link.cpp', + }, + incdirs = { + 'link/include', + 'link/extensions/abl_link/include', + 'link/modules/asio-standalone/asio/include', + }, + libraries = {'stdc++'}, + }, + }, + platforms = { + linux = { + modules = { + abletonlink = { + defines = {'LINK_PLATFORM_LINUX'}, + }, + }, + }, + windows = { + modules = { + abletonlink = { + defines = {'LINK_PLATFORM_WINDOWS'}, + }, + }, + }, + macosx = { + modules = { + abletonlink = { + defines = {'LINK_PLATFORM_MACOSX'}, + }, + }, + }, + }, +} 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; -- cgit v1.2.3