summaryrefslogtreecommitdiff
path: root/lib/gitano.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitano.lua')
-rw-r--r--lib/gitano.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/gitano.lua b/lib/gitano.lua
index c8f6bc4..5abf8c8 100644
--- a/lib/gitano.lua
+++ b/lib/gitano.lua
@@ -41,8 +41,9 @@ local supple = require 'gitano.supple'
local auth = require 'gitano.auth'
local plugins = require 'gitano.plugins'
local i18n = require 'gitano.i18n'
+local hooks = require 'gitano.hooks'
-local _VERSION = {1, 0, 0}
+local _VERSION = {1, 1, 0}
_VERSION.major = _VERSION[1]
_VERSION.minor = _VERSION[2]
_VERSION.patch = _VERSION[3]
@@ -68,4 +69,5 @@ return {
auth = auth,
plugins = plugins,
i18n = i18n,
+ hooks = hooks,
}