Skip to content

Commit 1527641

Browse files
committed
update version
1 parent cfbc7ea commit 1527641

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/array/init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ local utils = require('array.utils')
33
local array
44

55
array = {
6-
__VERSION = '1.3.1',
6+
__VERSION = '1.3.2',
77
__DESCRIPTION = "A small library with useful methods to handle Lua's table when it's working like an Array",
88
__LICENSE = [[
99
The MIT License (MIT)

test.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ local test = require 'simple_test'
22
local array = require 'array'
33

44
test('meta infos', function(a)
5-
a.equal(array.__VERSION, '1.3.1')
5+
a.equal(array.__VERSION, '1.3.2')
66
a.equal(array.__DESCRIPTION,
77
"A small library with useful methods to handle Lua's table when it's working like an Array")
88
end)

0 commit comments

Comments
 (0)