Skip to content

Commit de24695

Browse files
committed
Release 3.6.0
1 parent 314f326 commit de24695

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
version: 3.0.0.{build}-test
1+
version: 3.6.0.{build}-test
22

33
shallow_clone: true
44

55
matrix:
66
fast_finish: true
77

88
environment:
9-
LUAROCKS_VER: 3.0.0
9+
LUAROCKS_VER: 3.6.0
1010

1111
matrix:
1212
# Lua 5.1 tests

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ do
320320
done
321321

322322
echo
323-
BLUE "Configuring LuaRocks version dev..."
323+
BLUE "Configuring LuaRocks version 3.6.0..."
324324
echo
325325
echo
326326

install.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ local vars = {}
66

77

88
vars.PREFIX = nil
9-
vars.VERSION = "3.0"
9+
vars.VERSION = "3.6"
1010
vars.SYSCONFDIR = nil
1111
vars.CONFBACKUPDIR = nil
1212
vars.SYSCONFFILENAME = nil

luarocks-dev-1.rockspec renamed to luarocks-3.6.0-1.rockspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
rockspec_format = "3.0"
22
package = "luarocks"
3-
version = "dev-1"
3+
version = "3.6.0-1"
44
source = {
55
url = "git+https://github.com/luarocks/luarocks",
6+
tag = "v3.6.0"
67
}
78
description = {
89
summary = "A package manager for Lua modules.",

src/luarocks/core/cfg.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ local vers = require("luarocks.core.vers")
2020

2121
--------------------------------------------------------------------------------
2222

23-
local program_version = "dev"
24-
local program_series = "3.0"
23+
local program_version = "3.6.0"
24+
local program_series = "3.6"
2525
local major_version = (program_version:match("([^.]%.[^.])")) or program_series
2626

2727
local is_windows = package.config:sub(1,1) == "\\"

0 commit comments

Comments
 (0)