diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2018-07-18 11:40:04 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2018-08-14 13:26:49 -0300 |
commit | 06c4f45c636b207b70f21c552c9ad3c7f2c2423a (patch) | |
tree | 6a85c3f48b76fbebfcf41fd6a5353b644791f92c | |
parent | d3271135dba288fec7a85f97d423437806dda2fa (diff) | |
download | luarocks-3.0.1.tar.gz luarocks-3.0.1.tar.bz2 luarocks-3.0.1.zip |
Release 3.0.1v3.0.1
-rw-r--r-- | .travis.yml | 6 | ||||
-rw-r--r-- | appveyor.yml | 4 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | luarocks-3.0.1-1.rockspec (renamed from luarocks-dev-1.rockspec) | 2 | ||||
-rw-r--r-- | src/luarocks/core/cfg.lua | 2 |
5 files changed, 8 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml index 5d24b4d2..a38a140f 100644 --- a/.travis.yml +++ b/.travis.yml | |||
@@ -13,8 +13,8 @@ cache: | |||
13 | - testrun/testing_server-2.1 | 13 | - testrun/testing_server-2.1 |
14 | 14 | ||
15 | smoke_script: &smoke_script | 15 | smoke_script: &smoke_script |
16 | - ./makedist 3.0.0 | 16 | - ./makedist 3.0.1 |
17 | - ./smoke_test.sh luarocks-3.0.0.tar.gz | 17 | - ./smoke_test.sh luarocks-3.0.1.tar.gz |
18 | 18 | ||
19 | unit_script: &unit_script | 19 | unit_script: &unit_script |
20 | - busted -o gtest --exclude-tags=git,integration --verbose -Xhelper "lua_dir=$PWD/lua_install,travis" | 20 | - busted -o gtest --exclude-tags=git,integration --verbose -Xhelper "lua_dir=$PWD/lua_install,travis" |
@@ -24,7 +24,7 @@ integration_script: &integration_script | |||
24 | - lua -v | 24 | - lua -v |
25 | - if [ "$TRAVIS_OS_NAME" = "linux" ]; then shellcheck ./configure; fi | 25 | - if [ "$TRAVIS_OS_NAME" = "linux" ]; then shellcheck ./configure; fi |
26 | - ./configure --with-lua=lua_install | 26 | - ./configure --with-lua=lua_install |
27 | - ./makedist 3.0.0 | 27 | - ./makedist 3.0.1 |
28 | - busted -o gtest --exclude-tags=git,unit --verbose -Xhelper "lua_dir=$PWD/lua_install,travis" | 28 | - busted -o gtest --exclude-tags=git,unit --verbose -Xhelper "lua_dir=$PWD/lua_install,travis" |
29 | - busted -o gtest --exclude-tags=git,unit --verbose -Xhelper "lua_dir=$PWD/lua_install,travis,env=full" | 29 | - busted -o gtest --exclude-tags=git,unit --verbose -Xhelper "lua_dir=$PWD/lua_install,travis,env=full" |
30 | 30 | ||
diff --git a/appveyor.yml b/appveyor.yml index 479c4960..970b247b 100644 --- a/appveyor.yml +++ b/appveyor.yml | |||
@@ -1,4 +1,4 @@ | |||
1 | version: 3.0.0.{build}-test | 1 | version: 3.0.1.{build}-test |
2 | 2 | ||
3 | shallow_clone: true | 3 | shallow_clone: true |
4 | 4 | ||
@@ -6,7 +6,7 @@ matrix: | |||
6 | fast_finish: true | 6 | fast_finish: true |
7 | 7 | ||
8 | environment: | 8 | environment: |
9 | LUAROCKS_VER: 3.0.0 | 9 | LUAROCKS_VER: 3.0.1 |
10 | 10 | ||
11 | matrix: | 11 | matrix: |
12 | # Lua 5.1 tests | 12 | # Lua 5.1 tests |
@@ -318,7 +318,7 @@ do | |||
318 | done | 318 | done |
319 | 319 | ||
320 | echo | 320 | echo |
321 | BLUE "Configuring LuaRocks version dev..." | 321 | BLUE "Configuring LuaRocks version 3.0.1..." |
322 | echo | 322 | echo |
323 | echo | 323 | echo |
324 | 324 | ||
diff --git a/luarocks-dev-1.rockspec b/luarocks-3.0.1-1.rockspec index bc19e3ff..26ca47dc 100644 --- a/luarocks-dev-1.rockspec +++ b/luarocks-3.0.1-1.rockspec | |||
@@ -1,6 +1,6 @@ | |||
1 | rockspec_format = "3.0" | 1 | rockspec_format = "3.0" |
2 | package = "luarocks" | 2 | package = "luarocks" |
3 | version = "dev-1" | 3 | version = "3.0.1-1" |
4 | source = { | 4 | source = { |
5 | url = "git+https://github.com/luarocks/luarocks" | 5 | url = "git+https://github.com/luarocks/luarocks" |
6 | } | 6 | } |
diff --git a/src/luarocks/core/cfg.lua b/src/luarocks/core/cfg.lua index 7a764160..19f2b5b7 100644 --- a/src/luarocks/core/cfg.lua +++ b/src/luarocks/core/cfg.lua | |||
@@ -18,7 +18,7 @@ local persist = require("luarocks.core.persist") | |||
18 | 18 | ||
19 | -------------------------------------------------------------------------------- | 19 | -------------------------------------------------------------------------------- |
20 | 20 | ||
21 | local program_version = "dev" | 21 | local program_version = "3.0.1" |
22 | local program_series = "3.0" | 22 | local program_series = "3.0" |
23 | local major_version = (program_version:match("([^.]%.[^.])")) or program_series | 23 | local major_version = (program_version:match("([^.]%.[^.])")) or program_series |
24 | 24 | ||