Skip to content

Commit f64ac97

Browse files
committed
Release 2.3-3
1 parent f2c933a commit f64ac97

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package = "lua_cliargs"
2-
version = "2.3-2"
2+
version = "2.3-3"
33
source = {
4-
url = "https://github.com/amireh/lua_cliargs/archive/v2.3-2.tar.gz",
5-
dir = "lua_cliargs-2.3-2"
4+
url = "https://github.com/amireh/lua_cliargs/archive/v2.3-3.tar.gz",
5+
dir = "lua_cliargs-2.3-3"
66
}
77
description = {
88
summary = "A command-line argument parser.",

spec/cliargs_methods_spec.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ describe("Testing cliargs library methods/functions", function()
189189
-- takes: key, descr, default
190190
local key, desc, default = "-Wno-unsigned", "thedescription"
191191
cli:add_opt(key, desc, default)
192-
dump(cli.optional[1])
192+
193193
assert.are.equal(cli.optional[1].key, "Wno-unsigned")
194194
assert.are.equal(cli.optional[1].desc, desc)
195195
assert.are.equal(cli.optional[1].flag, true)

0 commit comments

Comments
 (0)