forked from aliles/begins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
68 lines (57 loc) · 2.15 KB
/
CHANGELOG
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
61
62
63
64
65
66
67
68
Changelog
---------
1.0 (Unreleased)
````````````````
* Ensure mock package gets installed on testing.
0.9 (2014-08-02)
````````````````
* First beta release
* Sphinx documentation available on Read The Docs
* Fix compatability between extension and convert decorators
0.8 (2014-03-13)
````````````````
* Boolean flags create both '--opt' and '--no-opt' command line options
* Replace '_' with '-' in command line option flags
* Enable creating sub-commands with a specified name
* Custom help formatters for control command line help output
* Create positional command line arguments for required parameters
* Published Python wheel packages to PyPI to improve install times
* Deprecate context.return_value for context.last_return and
context.return_values
0.7.1 (2013-10-03)
``````````````````
* Fix incompatability between automatic type conversion and command line flags
0.7 (2013-10-01)
````````````````
* New utility functions tofile and tolist
* Fix bug prevent help output with main function that takes on arguments
* Multiple subcommands support can be enabled with cmd_delim
* Context object available to main and subcommand functions for storing state
* Optional automatic type conversion for begin.convert and begin.start
* Command line flags for options with boolean default values
0.6 (2013-08-27)
````````````````
* Allow listing of optins in alphabetical order
* Allow suppression of short options
0.5 (2013-08-01)
````````````````
* Add support for sub-commands, sub-command groups and entry points
0.4 (2013-07-20)
````````````````
* Add function decorators to extend command line options to:
* Configure the logging module
* Configrue the tracebacks module
* Support configuration files to set defaults for command line options
0.3 (2013-07-10)
````````````````
* Depend on external funcsigs package for Python earlier than 3.3
* Depend on external argparse package for Python 2.6
* Use argparse instead over optparse internally for command line processing
0.2 (2013-07-04)
````````````````
* Fix missing begin.funcsigs package in source distribution
0.1 (2013-03-24)
````````````````
* First version released
* begin.start() decorator
* begin.convert() decorator