diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2022-12-08 15:11:02 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2022-12-08 15:11:02 -0300 |
commit | 0f4c793427a1cf2b7879ee668c1479058412629c (patch) | |
tree | acc480c6f1d8f313153fc23283e0c7d7101a11fd | |
parent | 525a3bccf105190c4b78c5c8eee9821e9951583d (diff) | |
download | luarocks-0f4c793427a1cf2b7879ee668c1479058412629c.tar.gz luarocks-0f4c793427a1cf2b7879ee668c1479058412629c.tar.bz2 luarocks-0f4c793427a1cf2b7879ee668c1479058412629c.zip |
Release 3.9.2
-rw-r--r-- | appveyor.yml | 4 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | install.bat | 2 | ||||
-rw-r--r-- | luarocks-3.9.2-1.rockspec (renamed from luarocks-dev-1.rockspec) | 3 | ||||
-rw-r--r-- | src/luarocks/core/cfg.lua | 2 |
5 files changed, 7 insertions, 6 deletions
diff --git a/appveyor.yml b/appveyor.yml index b084cff5..81d0310f 100644 --- a/appveyor.yml +++ b/appveyor.yml | |||
@@ -1,4 +1,4 @@ | |||
1 | version: 3.0.0.{build}-test | 1 | version: 3.9.2.{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.9.2 |
10 | 10 | ||
11 | matrix: | 11 | matrix: |
12 | # Lua 5.4 tests | 12 | # Lua 5.4 tests |
@@ -320,7 +320,7 @@ do | |||
320 | done | 320 | done |
321 | 321 | ||
322 | echo | 322 | echo |
323 | BLUE "Configuring LuaRocks version dev..." | 323 | BLUE "Configuring LuaRocks version 3.9.2..." |
324 | echo | 324 | echo |
325 | echo | 325 | echo |
326 | 326 | ||
diff --git a/install.bat b/install.bat index 7a5df9cd..de8cb70b 100644 --- a/install.bat +++ b/install.bat | |||
@@ -6,7 +6,7 @@ local vars = {} | |||
6 | 6 | ||
7 | 7 | ||
8 | vars.PREFIX = nil | 8 | vars.PREFIX = nil |
9 | vars.VERSION = "3.0" | 9 | vars.VERSION = "3.9" |
10 | vars.SYSCONFDIR = nil | 10 | vars.SYSCONFDIR = nil |
11 | vars.CONFBACKUPDIR = nil | 11 | vars.CONFBACKUPDIR = nil |
12 | vars.SYSCONFFILENAME = nil | 12 | vars.SYSCONFFILENAME = nil |
diff --git a/luarocks-dev-1.rockspec b/luarocks-3.9.2-1.rockspec index 718ce338..c4fe644d 100644 --- a/luarocks-dev-1.rockspec +++ b/luarocks-3.9.2-1.rockspec | |||
@@ -1,8 +1,9 @@ | |||
1 | rockspec_format = "3.0" | 1 | rockspec_format = "3.0" |
2 | package = "luarocks" | 2 | package = "luarocks" |
3 | version = "dev-1" | 3 | version = "3.9.2-1" |
4 | source = { | 4 | source = { |
5 | url = "git+https://github.com/luarocks/luarocks", | 5 | url = "git+https://github.com/luarocks/luarocks", |
6 | tag = "v3.9.2" | ||
6 | } | 7 | } |
7 | description = { | 8 | description = { |
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 a5f27e27..eb170f35 100644 --- a/src/luarocks/core/cfg.lua +++ b/src/luarocks/core/cfg.lua | |||
@@ -20,7 +20,7 @@ local vers = require("luarocks.core.vers") | |||
20 | 20 | ||
21 | -------------------------------------------------------------------------------- | 21 | -------------------------------------------------------------------------------- |
22 | 22 | ||
23 | local program_version = "dev" | 23 | local program_version = "3.9.2" |
24 | 24 | ||
25 | local is_windows = package.config:sub(1,1) == "\\" | 25 | local is_windows = package.config:sub(1,1) == "\\" |
26 | 26 | ||