Skip to content

Commit

Permalink
Add rockspec for 2.1.2 and bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
kernelsauce committed Jan 26, 2018
1 parent d1a857c commit 3b773d6
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
22 changes: 22 additions & 0 deletions rockspecs/turbo-2.1-2.rockspec
Original file line number Diff line number Diff line change
@@ -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 <jhnabrhmsn@gmail.com>",
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 = 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,
Expand Down

0 comments on commit 3b773d6

Please sign in to comment.