We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfbc7ea commit 1527641Copy full SHA for 1527641
src/array/init.lua
@@ -3,7 +3,7 @@ local utils = require('array.utils')
3
local array
4
5
array = {
6
- __VERSION = '1.3.1',
+ __VERSION = '1.3.2',
7
__DESCRIPTION = "A small library with useful methods to handle Lua's table when it's working like an Array",
8
__LICENSE = [[
9
The MIT License (MIT)
test.lua
@@ -2,7 +2,7 @@ local test = require 'simple_test'
2
local array = require 'array'
test('meta infos', function(a)
- a.equal(array.__VERSION, '1.3.1')
+ a.equal(array.__VERSION, '1.3.2')
a.equal(array.__DESCRIPTION,
"A small library with useful methods to handle Lua's table when it's working like an Array")
end)
0 commit comments