Skip to content

Commit

Permalink
Added version history to main documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
innot committed Aug 16, 2022
1 parent 8f81563 commit 4ba133f
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 6 deletions.
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,13 @@ Comprehensive documentation is available at https://argparseDecorator.readthedoc

## Version

* 1.1.0 Added support for execute_async()
* 1.0.2 Added support for quoted input to the execute method
* 1.0.1 first release
* 1.2.0
* Added support for sys.argv argument lists in execute()
* Using shlex to split commandlines into tokens.
* Numerous minor bug fixes
* 1.1.0
* Added support for execute_async()
* 1.0.2
* Added support for quoted input to the execute method
* 1.0.1
* first release
16 changes: 16 additions & 0 deletions docs/source/intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,22 @@ Now the help command, which is supplied by the argparseDecorator, will output th
See :ref:`Using the argparseDecorator` for more details and examples.

Version history
+++++++++++++++

1.2.0
- Added support for sys.argv argument lists in execute()
- Using shlex to split commandlines into tokens.
- Numerous minor bug fixes

1.1.0
- Added support for execute_async()

1.0.2
- Added support for quoted input to the execute method

1.0.1
- first release

.. _argparse: https://docs.python.org/3/library/argparse.html
.. _decorator: https://docs.python.org/3/glossary.html#term-decorator
Expand Down
3 changes: 0 additions & 3 deletions docs/source/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -738,9 +738,6 @@ returning to the caller :py:`sys.stdout` and :py:`sys.stderr` are restored to th
cli.execute("echo foobar", stdout=my_stdout)
print(stdout.getvalue()) # prints 'foobar'
.. note::
When running in an
Redirecting Input
+++++++++++++++++
Expand Down

0 comments on commit 4ba133f

Please sign in to comment.