Releases: koeir/flagparse
Releases · koeir/flagparse
v0.7.0
20 Apr 13:23
Compare
Sorry, something went wrong.
No results found
Reverted ?Flags.value() -> !Flags.get_value
Added option to err on missing arguments or not: errOnNoArgs
v0.6.1
19 Apr 07:03
Compare
Sorry, something went wrong.
No results found
Better parse result interface:
const result = try flagparse .parse (... );
defer result .deinit (... );
Fixed syntactical mistake of getting reference of allocators instead of instances
// from
pub fn parse (
allocator : * const std.mem.Allocators ,
args : * const std.process.Args ,
...
// to
pub fn parse (
allocator : std.mem.Allocator ,
args : std.process.Args ,
...
// etc
v0.5.3
18 Apr 14:22
Compare
Sorry, something went wrong.
No results found
v0.5.2
18 Apr 12:11
Compare
Sorry, something went wrong.
No results found
Logic fixes
Code clean-up
Fixed padding
v0.5.1
17 Apr 12:36
Compare
Sorry, something went wrong.
No results found
v0.5.0
17 Apr 06:05
Compare
Sorry, something went wrong.
No results found
Made Argumentative type flags be a slice of an arg instead of its own byte array.
v0.4.0
17 Apr 05:07
Compare
Sorry, something went wrong.
No results found
v0.3.0
16 Apr 09:26
Compare
Sorry, something went wrong.
No results found
v0.2.1
15 Apr 11:01
Compare
Sorry, something went wrong.
No results found
v0.2.0
15 Apr 06:43
Compare
Sorry, something went wrong.
No results found
log: made example optional in zig build