Skip to content

Commit a41588f

Browse files
committed
Release 3.1.3
1 parent 59e0269 commit a41588f

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.1.3.{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.1.3
1010

1111
matrix:
1212
# Lua 5.1 tests

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ do
323323
done
324324

325325
echo
326-
BLUE "Configuring LuaRocks version dev..."
326+
BLUE "Configuring LuaRocks version 3.1.3..."
327327
echo
328328
echo
329329

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

luarocks-dev-1.rockspec renamed to luarocks-3.1.3-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.1.3-1"
44
source = {
55
url = "git+https://github.com/luarocks/luarocks",
6+
tag = "v3.1.3"
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.1.3"
23+
local program_series = "3.1"
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)