Skip to content

Commit a01193b

Browse files
committed
update version
1 parent ebba6a1 commit a01193b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/array.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ end
1414
local array
1515

1616
array = {
17-
__VERSION = '1.2.6',
17+
__VERSION = '1.3.0',
1818
__DESCRIPTION = "A small library with useful methods to handle Lua's table when it's working like an Array",
1919
__LICENSE = [[
2020
The MIT License (MIT)

test.lua

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
package.path = "./src/?.lua;" .. package.path
2+
13
local array = require './src/array'
24
local test = require 'simple_test'
35

46
test('meta infos', function(a)
5-
a.equal(array.__VERSION, '1.2.6')
7+
a.equal(array.__VERSION, '1.3.0')
68
a.equal(array.__DESCRIPTION,
79
"A small library with useful methods to handle Lua's table when it's working like an Array")
810
end)

0 commit comments

Comments
 (0)