1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
2009-10-18 Aleksey Cheusov <vle@gmx.net>
* Makefile, NEWS:
version -> 0.7.0
Release notes in NEWS
* alt_getopt.lua, tests/test.out:
Do not use error() for exiting, use os.exit() instead
* alt_getopt, tests/test.out, tests/test.sh:
Additional regression tests/examples
* alt_getopt.lua, tests/test.out:
POSIX getopt("xo:") accepts './app -xoVVV' and './app -xo VVV'
treating them as './app -x -o VVV'. Now Lua alt_getopt does the same.
2009-04-26 Aleksey Cheusov <vle@gmx.net>
* Makefile, NEWS, alt_getopt.lua:
version -> 0.6.0
NEWS: release notes
s/2008/2009/
* alt_getopt.lua:
Minor clean-ups and improvements suggested by Leo P.:
- package.seeall is removed
- gmatch instead of loop
- others
2009-01-12 Aleksey Cheusov <vle@gmx.net>
* Makefile:
renamed tarball to lua-alt-getopt
version -> 0.5.0
2009-01-11 Aleksey Cheusov <vle@gmx.net>
* Makefile:
version -> 0.4.0
* alt_getopt.lua, tests/test.out, tests/test.sh:
os.exit --> error
* README, alt_getopt.lua:
README added
minor code clean-ups
2009-01-10 Aleksey Cheusov <vle@gmx.net>
* Makefile: PROJECTNAME is set
* tests/_test.res:
removed
* Makefile, alt_getopt, alt_getopt.lua, tests/_test.res, tests/test.out, tests/test.sh:
Imported sources
* Makefile, alt_getopt, alt_getopt.lua, tests/_test.res, tests/test.out, tests/test.sh:
New file.
|