bump version to 1.8.1
[trollop:mainline.git] / History.txt
1 == 1.8.1 / 2008-06-24
2
3 * Bugfix for short option autocreation
4 * More aggressive documentation
5
6 == 1.8 / 2008-06-16
7
8 * Sub-command support via Parser#stop_on
9
10 == 1.7.2 / 2008-01-16
11 * Ruby 1.9-ify. Apparently this means replacing :'s with ;'s.
12
13 == 1.7.1 / 2008-01-07
14 * Documentation improvements
15
16 == 1.7 / 2007-06-17
17 * Fix incorrect error message for multiple missing required arguments
18   (thanks to Neill Zero)
19
20 == 1.6 / 2007-04-01
21 * Don't attempt curses screen-width magic unless running on a terminal.
22
23 == 1.5 / 2007-03-31
24 * --help and --version do the right thing even if the rest of the
25   command line is incorrect.
26 * Added #conflicts and #depends to model dependencies and exclusivity
27   between arguments.
28 * Minor bugfixes.
29
30 == 1.4 / 2007-03-26
31 * Disable short options with :short => :none.
32 * Minor bugfixes and error message improvements.
33
34 == 1.3 / 2007-01-31
35 * Wrap at (screen width - 1) instead of screen width.
36 * User can override --help and --version.
37 * Bugfix in handling of -v and -h.
38 * More tests to confirm the above.
39
40 == 1.2 / 2007-01-31
41 * Minor documentation tweaks.
42 * Removed hoe dependency.
43
44 == 1.1 / 2007-01-30
45 * Trollop::options now passes any arguments as block arguments. Since
46   instance variables are not properly captured by the block, this
47   makes it slightly less noisy to pass them in as local variables.
48   (A real-life use for _why's cloaker!)
49 * Help display now preserves original argument order.
50 * Trollop::die now also has a single string form in case death is not
51   due to a single argument.
52 * Parser#text now an alias for Parser#banner, and can be called
53   multiple times, with the output being placed in the right position
54   in the help text.
55 * Slightly more indicative formatting for parameterized arguments.
56
57 == 1.0 / 2007-01-29
58 * Initial release.