Skip to content

Commit 1d07d1e

Browse files
committed
Staging for version 2.0.3.
1 parent c5ff4e1 commit 1d07d1e

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ ALL_LUA_FILES := $(call rwildcard,./,*.lua)
2727
ALL_LUAC_FILES := $(call rwildcard,./,*.luac)
2828
MAJVER= 2
2929
MINVER= 0
30-
MICVER= 2
30+
MICVER= 3
3131
TVERSION= $(MAJVER).$(MINVER).$(MICVER)
3232
PREFIX ?= /usr/local
3333
TDEPS= deps

rockspecs/turbo-2.0-3.rockspec

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
package = "turbo"
2+
version = "2.0-3"
3+
supported_platforms = {"linux"}
4+
source = {
5+
url = "git://github.com/kernelsauce/turbo",
6+
tag = "v2.0.3"
7+
}
8+
description = {
9+
summary = "A networking suite for LuaJIT2, optimized for performance.",
10+
detailed = [[Turbo.lua is just another framework to create network programs for Linux. It uses kernel
11+
event polling to manage network connections instead of the traditional concurency models that employ
12+
threads. As it does not use threads, no locks, mutexes or other bad things are required. It solves the
13+
same issues as Node.js, Tornado etc. except it solves it with Lua. A simple, yet powerful language that
14+
fits nicely with the event polling model with its builtin coroutines.]],
15+
homepage = "http://turbolua.org",
16+
maintainer = "John Abrahamsen <jhnabrhmsn@gmail.com>",
17+
license = "Apache 2.0"
18+
}
19+
build = {
20+
type = "make",
21+
makefile = "Makefile"
22+
}

turbo.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,10 @@ local turbo = {} -- turbo main namespace.
6565
-- changes, the major version is incremented and others are set to zero.
6666
turbo.MAJOR_VERSION = 2
6767
turbo.MINOR_VERSION = 0
68-
turbo.MICRO_VERSION = 2
68+
turbo.MICRO_VERSION = 3
6969
-- A 3-byte hexadecimal representation of the version, e.g. 0x010201 for
7070
-- version 1.2.1 and 0x010300 for version 1.3.
71-
turbo.VERSION_HEX = 0x020000
71+
turbo.VERSION_HEX = 0x020003
7272
if turbo.MICRO_VERSION then
7373
turbo.VERSION = string.format("%d.%d.%d",
7474
turbo.MAJOR_VERSION,

0 commit comments

Comments
 (0)