Skip to content

Commit

Permalink
Version 2.0.2 release rockspec and version bumps.
Browse files Browse the repository at this point in the history
  • Loading branch information
kernelsauce committed Oct 10, 2015
1 parent db51fff commit da62e8b
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= 0
MICVER= 2
TVERSION= $(MAJVER).$(MINVER).$(MICVER)
PREFIX ?= /usr/local
TDEPS= deps
Expand Down
22 changes: 22 additions & 0 deletions rockspecs/turbo-2.0-2.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
package = "turbo"
version = "2.0-2"
supported_platforms = {"linux"}
source = {
url = "git://github.com/kernelsauce/turbo",
tag = "v2.0.2"
}
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 @@ -39,7 +39,7 @@
-- * Small footprint
--
--
-- Copyright John Abrahamsen 2011, 2012, 2013, 2014
-- Copyright John Abrahamsen 2011 - 2015
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
Expand All @@ -65,7 +65,7 @@ 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 = 0
turbo.MICRO_VERSION = 2
-- 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
Expand Down

0 comments on commit da62e8b

Please sign in to comment.