diff --git a/doc/conf.py b/doc/conf.py index ecc66b18..cb77dbf0 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -61,7 +61,7 @@ # The short X.Y version. version = '2.1' # The full version, including alpha/beta/rc tags. -release = '2.1.1' +release = '2.1.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/rockspecs/turbo-2.1-2.rockspec b/rockspecs/turbo-2.1-2.rockspec new file mode 100644 index 00000000..46950a92 --- /dev/null +++ b/rockspecs/turbo-2.1-2.rockspec @@ -0,0 +1,22 @@ +package = "turbo" +version = "2.1-2" +supported_platforms = {"linux", "macosx"} +source = { + url = "git://github.com/kernelsauce/turbo", + tag = "v2.1.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 ", + license = "Apache 2.0" +} +build = { + type = "make", + makefile = "Makefile" +} diff --git a/turbo.lua b/turbo.lua index faa0fa5a..91822aec 100644 --- a/turbo.lua +++ b/turbo.lua @@ -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 = 1 -turbo.MICRO_VERSION = 1 +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 = 0x020101 +turbo.VERSION_HEX = 0x020102 if turbo.MICRO_VERSION then turbo.VERSION = string.format("%d.%d.%d", turbo.MAJOR_VERSION,