From e0f77632442c68a1f59a6a65e19ced9eff696f88 Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Fri, 7 Sep 2018 02:47:50 +0300 Subject: Release 3.0.3 --- .travis.yml | 6 +++--- appveyor.yml | 4 ++-- configure | 2 +- luarocks-3.0.3-1.rockspec | 37 +++++++++++++++++++++++++++++++++++++ luarocks-dev-1.rockspec | 36 ------------------------------------ src/luarocks/core/cfg.lua | 2 +- 6 files changed, 44 insertions(+), 43 deletions(-) create mode 100644 luarocks-3.0.3-1.rockspec delete mode 100644 luarocks-dev-1.rockspec diff --git a/.travis.yml b/.travis.yml index 5d24b4d2..c13e29aa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,8 +13,8 @@ cache: - testrun/testing_server-2.1 smoke_script: &smoke_script - - ./makedist 3.0.0 - - ./smoke_test.sh luarocks-3.0.0.tar.gz + - ./makedist 3.0.3 + - ./smoke_test.sh luarocks-3.0.3.tar.gz unit_script: &unit_script - busted -o gtest --exclude-tags=git,integration --verbose -Xhelper "lua_dir=$PWD/lua_install,travis" @@ -24,7 +24,7 @@ integration_script: &integration_script - lua -v - if [ "$TRAVIS_OS_NAME" = "linux" ]; then shellcheck ./configure; fi - ./configure --with-lua=lua_install - - ./makedist 3.0.0 + - ./makedist 3.0.3 - busted -o gtest --exclude-tags=git,unit --verbose -Xhelper "lua_dir=$PWD/lua_install,travis" - busted -o gtest --exclude-tags=git,unit --verbose -Xhelper "lua_dir=$PWD/lua_install,travis,env=full" diff --git a/appveyor.yml b/appveyor.yml index 479c4960..e2b9046b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 3.0.0.{build}-test +version: 3.0.3.{build}-test shallow_clone: true @@ -6,7 +6,7 @@ matrix: fast_finish: true environment: - LUAROCKS_VER: 3.0.0 + LUAROCKS_VER: 3.0.3 matrix: # Lua 5.1 tests diff --git a/configure b/configure index e64eac28..8c77c644 100755 --- a/configure +++ b/configure @@ -318,7 +318,7 @@ do done echo -BLUE "Configuring LuaRocks version dev..." +BLUE "Configuring LuaRocks version 3.0.3..." echo echo diff --git a/luarocks-3.0.3-1.rockspec b/luarocks-3.0.3-1.rockspec new file mode 100644 index 00000000..909d062b --- /dev/null +++ b/luarocks-3.0.3-1.rockspec @@ -0,0 +1,37 @@ +rockspec_format = "3.0" +package = "luarocks" +version = "3.0.3-1" +source = { + url = "git+https://github.com/luarocks/luarocks", + tag = "v3.0.3", +} +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 9be573ce..e49e89b8 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.3" local program_series = "3.0" local major_version = (program_version:match("([^.]%.[^.])")) or program_series -- cgit v1.2.3-55-g6feb