summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2024-05-31 14:38:00 -0300
committerHisham Muhammad <hisham@gobolinux.org>2024-05-31 14:38:00 -0300
commitfa2736e7c68094710643577b0153dac72ce4bcdc (patch)
tree0ac9720032b328df2e69825cd61a7dbdd358ab37
parent118b2deaa783f9bb8b877eb016aa80c23c21ee24 (diff)
downloadluarocks-3.11.1.tar.gz
luarocks-3.11.1.tar.bz2
luarocks-3.11.1.zip
Release 3.11.1v3.11.1
-rw-r--r--appveyor.yml4
-rwxr-xr-xconfigure2
-rw-r--r--install.bat2
-rw-r--r--luarocks-3.11.1-1.rockspec (renamed from luarocks-dev-1.rockspec)3
-rw-r--r--src/luarocks/core/cfg.lua2
5 files changed, 7 insertions, 6 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 5b7493df..72d22c4e 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,4 +1,4 @@
1version: 3.0.0.{build}-test 1version: 3.11.1.{build}-test
2 2
3shallow_clone: true 3shallow_clone: true
4skip_branch_with_pr: true 4skip_branch_with_pr: true
@@ -7,7 +7,7 @@ matrix:
7 fast_finish: true 7 fast_finish: true
8 8
9environment: 9environment:
10 LUAROCKS_VER: 3.0.0 10 LUAROCKS_VER: 3.11.1
11 11
12 matrix: 12 matrix:
13 # quick tests 13 # quick tests
diff --git a/configure b/configure
index 8e1ce94c..6c831d46 100755
--- a/configure
+++ b/configure
@@ -321,7 +321,7 @@ do
321done 321done
322 322
323echo 323echo
324BLUE "Configuring LuaRocks version dev..." 324BLUE "Configuring LuaRocks version 3.11.1..."
325echo 325echo
326echo 326echo
327 327
diff --git a/install.bat b/install.bat
index 016eddaf..b82f366c 100644
--- a/install.bat
+++ b/install.bat
@@ -6,7 +6,7 @@ local vars = {}
6 6
7 7
8vars.PREFIX = nil 8vars.PREFIX = nil
9vars.VERSION = "3.0" 9vars.VERSION = "3.11"
10vars.SYSCONFDIR = nil 10vars.SYSCONFDIR = nil
11vars.CONFBACKUPDIR = nil 11vars.CONFBACKUPDIR = nil
12vars.SYSCONFFILENAME = nil 12vars.SYSCONFFILENAME = nil
diff --git a/luarocks-dev-1.rockspec b/luarocks-3.11.1-1.rockspec
index 677b07cf..97040c51 100644
--- a/luarocks-dev-1.rockspec
+++ b/luarocks-3.11.1-1.rockspec
@@ -1,8 +1,9 @@
1rockspec_format = "3.0" 1rockspec_format = "3.0"
2package = "luarocks" 2package = "luarocks"
3version = "dev-1" 3version = "3.11.1-1"
4source = { 4source = {
5 url = "git+https://github.com/luarocks/luarocks", 5 url = "git+https://github.com/luarocks/luarocks",
6 tag = "v3.11.1"
6} 7}
7description = { 8description = {
8 summary = "A package manager for Lua modules.", 9 summary = "A package manager for Lua modules.",
diff --git a/src/luarocks/core/cfg.lua b/src/luarocks/core/cfg.lua
index 6d8fe55b..9cfd9ddf 100644
--- a/src/luarocks/core/cfg.lua
+++ b/src/luarocks/core/cfg.lua
@@ -21,7 +21,7 @@ local vers = require("luarocks.core.vers")
21 21
22-------------------------------------------------------------------------------- 22--------------------------------------------------------------------------------
23 23
24local program_version = "dev" 24local program_version = "3.11.1"
25 25
26local is_windows = package.config:sub(1,1) == "\\" 26local is_windows = package.config:sub(1,1) == "\\"
27 27