Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
EvandroLG committed Dec 18, 2019
1 parent ebba6a1 commit a01193b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/array.lua
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ end
local array

array = {
__VERSION = '1.2.6',
__VERSION = '1.3.0',
__DESCRIPTION = "A small library with useful methods to handle Lua's table when it's working like an Array",
__LICENSE = [[
The MIT License (MIT)
Expand Down
4 changes: 3 additions & 1 deletion test.lua
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package.path = "./src/?.lua;" .. package.path

local array = require './src/array'
local test = require 'simple_test'

test('meta infos', function(a)
a.equal(array.__VERSION, '1.2.6')
a.equal(array.__VERSION, '1.3.0')
a.equal(array.__DESCRIPTION,
"A small library with useful methods to handle Lua's table when it's working like an Array")
end)
Expand Down

0 comments on commit a01193b

Please sign in to comment.