Version 1
[yaffs-website] / node_modules / argparse / CHANGELOG.md
1 1.0.9 / 2016-09-29
2 ------------------
3
4 - Rerelease after 1.0.8 - deps cleanup.
5
6
7 1.0.8 / 2016-09-29
8 ------------------
9
10 - Maintenance (deps bump, fix node 6.5+ tests, coverage report).
11
12
13 1.0.7 / 2016-03-17
14 ------------------
15
16 - Teach `addArgument` to accept string arg names. #97, @tomxtobin.
17
18
19 1.0.6 / 2016-02-06
20 ------------------
21
22 - Maintenance: moved to eslint & updated CS.
23
24
25 1.0.5 / 2016-02-05
26 ------------------
27
28 - Removed lodash dependency to significantly reduce install size.
29   Thanks to @mourner.
30
31
32 1.0.4 / 2016-01-17
33 ------------------
34
35 - Maintenance: lodash update to 4.0.0.
36
37
38 1.0.3 / 2015-10-27
39 ------------------
40
41 - Fix parse `=` in args: `--examplepath="C:\myfolder\env=x64"`. #84, @CatWithApple.
42
43
44 1.0.2 / 2015-03-22
45 ------------------
46
47 - Relaxed lodash version dependency.
48
49
50 1.0.1 / 2015-02-20
51 ------------------
52
53 - Changed dependencies to be compatible with ancient nodejs.
54
55
56 1.0.0 / 2015-02-19
57 ------------------
58
59 - Maintenance release.
60 - Replaced `underscore` with `lodash`.
61 - Bumped version to 1.0.0 to better reflect semver meaning.
62 - HISTORY.md -> CHANGELOG.md
63
64
65 0.1.16 / 2013-12-01
66 -------------------
67
68 - Maintenance release. Updated dependencies and docs.
69
70
71 0.1.15 / 2013-05-13
72 -------------------
73
74 - Fixed #55, @trebor89
75
76
77 0.1.14 / 2013-05-12
78 -------------------
79
80 - Fixed #62, @maxtaco
81
82
83 0.1.13 / 2013-04-08
84 -------------------
85
86 - Added `.npmignore` to reduce package size
87
88
89 0.1.12 / 2013-02-10
90 -------------------
91
92 - Fixed conflictHandler (#46), @hpaulj
93
94
95 0.1.11 / 2013-02-07
96 -------------------
97
98 - Multiple bugfixes, @hpaulj
99 - Added 70+ tests (ported from python), @hpaulj
100 - Added conflictHandler, @applepicke
101 - Added fromfilePrefixChar, @hpaulj
102
103
104 0.1.10 / 2012-12-30
105 -------------------
106
107 - Added [mutual exclusion](http://docs.python.org/dev/library/argparse.html#mutual-exclusion)
108   support, thanks to @hpaulj
109 - Fixed options check for `storeConst` & `appendConst` actions, thanks to @hpaulj
110
111
112 0.1.9 / 2012-12-27
113 ------------------
114
115 - Fixed option dest interferens with other options (issue #23), thanks to @hpaulj
116 - Fixed default value behavior with `*` positionals, thanks to @hpaulj
117 - Improve `getDefault()` behavior, thanks to @hpaulj
118 - Imrove negative argument parsing, thanks to @hpaulj
119
120
121 0.1.8 / 2012-12-01
122 ------------------
123
124 - Fixed parser parents (issue #19), thanks to @hpaulj
125 - Fixed negative argument parse (issue #20), thanks to @hpaulj
126
127
128 0.1.7 / 2012-10-14
129 ------------------
130
131 - Fixed 'choices' argument parse (issue #16)
132 - Fixed stderr output (issue #15)
133
134
135 0.1.6 / 2012-09-09
136 ------------------
137
138 - Fixed check for conflict of options (thanks to @tomxtobin)
139
140
141 0.1.5 / 2012-09-03
142 ------------------
143
144 - Fix parser #setDefaults method (thanks to @tomxtobin)
145
146
147 0.1.4 / 2012-07-30
148 ------------------
149
150 - Fixed pseudo-argument support (thanks to @CGamesPlay)
151 - Fixed addHelp default (should be true), if not set (thanks to @benblank)
152
153
154 0.1.3 / 2012-06-27
155 ------------------
156
157 - Fixed formatter api name: Formatter -> HelpFormatter
158
159
160 0.1.2 / 2012-05-29
161 ------------------
162
163 - Added basic tests
164 - Removed excess whitespace in help
165 - Fixed error reporting, when parcer with subcommands
166   called with empty arguments
167
168
169 0.1.1 / 2012-05-23
170 ------------------
171
172 - Fixed line wrapping in help formatter
173 - Added better error reporting on invalid arguments
174
175
176 0.1.0 / 2012-05-16
177 ------------------
178
179 - First release.