From 17f05514ab27ca2de23e29f3b07bfbbdf6de8c36 Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Mon, 8 Nov 2021 12:30:37 -0300 Subject: Release 3.8.0 --- appveyor.yml | 4 ++-- configure | 2 +- install.bat | 2 +- luarocks-3.8.0-1.rockspec | 38 ++++++++++++++++++++++++++++++++++++++ luarocks-dev-1.rockspec | 37 ------------------------------------- src/luarocks/core/cfg.lua | 4 ++-- 6 files changed, 44 insertions(+), 43 deletions(-) create mode 100644 luarocks-3.8.0-1.rockspec delete mode 100644 luarocks-dev-1.rockspec diff --git a/appveyor.yml b/appveyor.yml index 7011c80c..89134665 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 3.0.0.{build}-test +version: 3.8.0.{build}-test shallow_clone: true @@ -6,7 +6,7 @@ matrix: fast_finish: true environment: - LUAROCKS_VER: 3.0.0 + LUAROCKS_VER: 3.8.0 matrix: # Lua 5.1 tests diff --git a/configure b/configure index 4a5542b9..09cb27a8 100755 --- a/configure +++ b/configure @@ -320,7 +320,7 @@ do done echo -BLUE "Configuring LuaRocks version dev..." +BLUE "Configuring LuaRocks version 3.8.0..." echo echo diff --git a/install.bat b/install.bat index 0100ca63..c7087a1b 100644 --- a/install.bat +++ b/install.bat @@ -6,7 +6,7 @@ local vars = {} vars.PREFIX = nil -vars.VERSION = "3.0" +vars.VERSION = "3.8" vars.SYSCONFDIR = nil vars.CONFBACKUPDIR = nil vars.SYSCONFFILENAME = nil diff --git a/luarocks-3.8.0-1.rockspec b/luarocks-3.8.0-1.rockspec new file mode 100644 index 00000000..9cedd54f --- /dev/null +++ b/luarocks-3.8.0-1.rockspec @@ -0,0 +1,38 @@ +rockspec_format = "3.0" +package = "luarocks" +version = "3.8.0-1" +source = { + url = "git+https://github.com/luarocks/luarocks", + tag = "v3.8.0" +} +description = { + summary = "A package manager for Lua modules.", + detailed = [[ + LuaRocks allows you to install Lua modules as self-contained + packages called "rocks", which also contain version dependency + information. This information is used both during installation, + so that when one rock is requested all rocks it depends on are + installed as well, and at run time, so that when a module is + required, the correct version is loaded. LuaRocks supports both + local and remote repositories, and multiple local rocks trees. + ]], + homepage = "http://www.luarocks.org", + issues_url = "https://github.com/luarocks/luarocks/issues", + maintainer = "Hisham Muhammad", + license = "MIT", +} +test_dependencies = { + "luacov", + "busted-htest", +} +test = { + type = "busted", + platforms = { + windows = { + flags = { "--exclude-tags=ssh,git,unix" } + }, + unix = { + flags = { "--exclude-tags=ssh,git" } + } + } +} diff --git a/luarocks-dev-1.rockspec b/luarocks-dev-1.rockspec deleted file mode 100644 index c7933042..00000000 --- a/luarocks-dev-1.rockspec +++ /dev/null @@ -1,37 +0,0 @@ -rockspec_format = "3.0" -package = "luarocks" -version = "dev-1" -source = { - url = "git+https://github.com/luarocks/luarocks", -} -description = { - summary = "A package manager for Lua modules.", - detailed = [[ - LuaRocks allows you to install Lua modules as self-contained - packages called "rocks", which also contain version dependency - information. This information is used both during installation, - so that when one rock is requested all rocks it depends on are - installed as well, and at run time, so that when a module is - required, the correct version is loaded. LuaRocks supports both - local and remote repositories, and multiple local rocks trees. - ]], - homepage = "http://www.luarocks.org", - issues_url = "https://github.com/luarocks/luarocks/issues", - maintainer = "Hisham Muhammad", - license = "MIT", -} -test_dependencies = { - "luacov", - "busted-htest", -} -test = { - type = "busted", - platforms = { - windows = { - flags = { "--exclude-tags=ssh,git,unix" } - }, - unix = { - flags = { "--exclude-tags=ssh,git" } - } - } -} diff --git a/src/luarocks/core/cfg.lua b/src/luarocks/core/cfg.lua index ccee4ba9..926d4793 100644 --- a/src/luarocks/core/cfg.lua +++ b/src/luarocks/core/cfg.lua @@ -20,8 +20,8 @@ local vers = require("luarocks.core.vers") -------------------------------------------------------------------------------- -local program_version = "dev" -local program_series = "3.0" +local program_version = "3.8.0" +local program_series = "3.8" local major_version = (program_version:match("([^.]%.[^.])")) or program_series local is_windows = package.config:sub(1,1) == "\\" -- cgit v1.2.3-55-g6feb