Skip to content

Commit

Permalink
Bump version to 2.1.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
kernelsauce committed May 25, 2017
1 parent 7e9b08a commit 0dbfef7
Show file tree
Hide file tree
Showing 2 changed files with 3 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.0'
release = '2.1.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
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 = 0
turbo.MICRO_VERSION = 1
-- 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 = 0x020005
turbo.VERSION_HEX = 0x020101
if turbo.MICRO_VERSION then
turbo.VERSION = string.format("%d.%d.%d",
turbo.MAJOR_VERSION,
Expand Down

0 comments on commit 0dbfef7

Please sign in to comment.