Skip to content

Commit d1d8ada

Browse files
committed
Release 3.5.0
1 parent ffbb66d commit d1d8ada

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.5.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.5.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.5.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.5"
1010
vars.SYSCONFDIR = nil
1111
vars.CONFBACKUPDIR = nil
1212
vars.SYSCONFFILENAME = nil

luarocks-dev-1.rockspec renamed to luarocks-3.5.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.5.0-1"
44
source = {
55
url = "git+https://github.com/luarocks/luarocks",
6+
tag = "v3.5.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
@@ -19,8 +19,8 @@ local sysdetect = require("luarocks.core.sysdetect")
1919

2020
--------------------------------------------------------------------------------
2121

22-
local program_version = "dev"
23-
local program_series = "3.0"
22+
local program_version = "3.5.0"
23+
local program_series = "3.5"
2424
local major_version = (program_version:match("([^.]%.[^.])")) or program_series
2525

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

0 commit comments

Comments
 (0)