Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stevedonovan/Penlight.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Melnichenko <mpeterval@gmail.com>2018-09-21 13:09:40 +0300
committerPeter Melnichenko <mpeterval@gmail.com>2018-09-21 13:10:48 +0300
commit6d0c26fea9403b3b9de1d81d2511a8d5583251dd (patch)
tree9fe75e6f95ea232684848954987e0a750ba745ed
parentd01df2ef17608041f6fe1c7f235e9930d49738f7 (diff)
Fix version number
-rw-r--r--doc/config.ld2
-rw-r--r--lua/pl/utils.lua2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/config.ld b/doc/config.ld
index 25c46f2..da115cb 100644
--- a/doc/config.ld
+++ b/doc/config.ld
@@ -1,5 +1,5 @@
project = 'Penlight'
-description = 'Penlight Lua Libraries 1.5.3'
+description = 'Penlight Lua Libraries 1.5.4'
full_description = 'The documentation is available @{01-introduction.md|here}.'
title = 'Penlight Documentation'
dir = 'api'
diff --git a/lua/pl/utils.lua b/lua/pl/utils.lua
index 5fd11a2..da3e327 100644
--- a/lua/pl/utils.lua
+++ b/lua/pl/utils.lua
@@ -11,7 +11,7 @@ local append = table.insert
local unpack = rawget(_G,'unpack') or rawget(table,'unpack')
local utils = {
- _VERSION = "1.5.2",
+ _VERSION = "1.5.4",
lua51 = compat.lua51,
setfenv = compat.setfenv,
getfenv = compat.getfenv,