Skip to content

Commit

Permalink
Staging for version 2.0.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
kernelsauce committed Oct 20, 2015
1 parent c5ff4e1 commit 1d07d1e
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ ALL_LUA_FILES := $(call rwildcard,./,*.lua)
ALL_LUAC_FILES := $(call rwildcard,./,*.luac)
MAJVER= 2
MINVER= 0
MICVER= 2
MICVER= 3
TVERSION= $(MAJVER).$(MINVER).$(MICVER)
PREFIX ?= /usr/local
TDEPS= deps
Expand Down
22 changes: 22 additions & 0 deletions rockspecs/turbo-2.0-3.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
package = "turbo"
version = "2.0-3"
supported_platforms = {"linux"}
source = {
url = "git://github.com/kernelsauce/turbo",
tag = "v2.0.3"
}
description = {
summary = "A networking suite for LuaJIT2, optimized for performance.",
detailed = [[Turbo.lua is just another framework to create network programs for Linux. It uses kernel
event polling to manage network connections instead of the traditional concurency models that employ
threads. As it does not use threads, no locks, mutexes or other bad things are required. It solves the
same issues as Node.js, Tornado etc. except it solves it with Lua. A simple, yet powerful language that
fits nicely with the event polling model with its builtin coroutines.]],
homepage = "http://turbolua.org",
maintainer = "John Abrahamsen <[email protected]>",
license = "Apache 2.0"
}
build = {
type = "make",
makefile = "Makefile"
}
4 changes: 2 additions & 2 deletions turbo.lua
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ local turbo = {} -- turbo main namespace.
-- changes, the major version is incremented and others are set to zero.
turbo.MAJOR_VERSION = 2
turbo.MINOR_VERSION = 0
turbo.MICRO_VERSION = 2
turbo.MICRO_VERSION = 3
-- A 3-byte hexadecimal representation of the version, e.g. 0x010201 for
-- version 1.2.1 and 0x010300 for version 1.3.
turbo.VERSION_HEX = 0x020000
turbo.VERSION_HEX = 0x020003
if turbo.MICRO_VERSION then
turbo.VERSION = string.format("%d.%d.%d",
turbo.MAJOR_VERSION,
Expand Down

0 comments on commit 1d07d1e

Please sign in to comment.