From 02bb014645a45aee2ed2a78e4088fd2baace3a30 Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Wed, 18 Jul 2018 11:40:04 -0300 Subject: Release 3.0.0 --- luarocks-3.0.0-1.rockspec | 36 ++++++++++++++++++++++++++++++++++++ luarocks-dev-1.rockspec | 36 ------------------------------------ src/luarocks/core/cfg.lua | 2 +- 3 files changed, 37 insertions(+), 37 deletions(-) create mode 100644 luarocks-3.0.0-1.rockspec delete mode 100644 luarocks-dev-1.rockspec diff --git a/luarocks-3.0.0-1.rockspec b/luarocks-3.0.0-1.rockspec new file mode 100644 index 00000000..31e696b5 --- /dev/null +++ b/luarocks-3.0.0-1.rockspec @@ -0,0 +1,36 @@ +rockspec_format = "3.0" +package = "luarocks" +version = "3.0.0-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", +} +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 bc19e3ff..00000000 --- a/luarocks-dev-1.rockspec +++ /dev/null @@ -1,36 +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", -} -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 2606291c..d6fc8ec1 100644 --- a/src/luarocks/core/cfg.lua +++ b/src/luarocks/core/cfg.lua @@ -18,7 +18,7 @@ local persist = require("luarocks.core.persist") -------------------------------------------------------------------------------- -local program_version = "dev" +local program_version = "3.0.0" local program_series = "3.0" local major_version = (program_version:match("([^.]%.[^.])")) or program_series -- cgit v1.2.3-55-g6feb