Skip to content

Releases: alex-rudakov/sphinx-argparse

0.2.3

12 Oct 12:16
Compare
Choose a tag to compare
  • Fixed a variety of issues, such as with @replace (issue #99). Thanks to @evgeni
  • You can now skip sections with @Skip. Thanks to @evgeni
  • Fixed handling of the epilog

0.2.2

12 Mar 08:22
Compare
Choose a tag to compare
  • Made CommonMark optional, which will hopefully fix build issues on read the docs. Thanks to @Chilipp for providing the fix for this!

0.2.1

13 Jun 07:05
Compare
Choose a tag to compare
  • Stopped importing sphinx.util.compat, which was causing issues like that seen in #65

0.2.0

31 Mar 08:17
Compare
Choose a tag to compare
  • Section titles can now be used in tables of contents and linked to. The title itself is also used as the anchor. In the case of repeated names _replicateX, where X is a number, is prepended to ensure that all titles are uniquely linkable. This was bug #46.
  • The positional (aka required) and named (aka optional) option sections are now named "Positional Arguments" and "Named Arguments", for the sake of clarity (e.g., named arguments can be required). This was issue #58.
  • Fixed quoting of default strings (issue #59).
  • Added the :noepilogue: and :nodescription: options, thanks to @arewm.
  • Added the :nosubcommand: option, thanks to @arewm.

0.1.17

24 Feb 13:44
Compare
Choose a tag to compare
  • Fixed handling of argument groups (this was bug #49). Thanks to @croth1 for reporting this bug. Note that now position arguments (also known as required arguments) within argument groups are now also handled correctly.

0.1.16

04 Dec 19:18
Compare
Choose a tag to compare
  • Added a :nodefaultconst: directive, which is similar to the :nodefault: directive, but applies only to store_true, store_false, and store_const (e.g., it will hide the "=True" part in the output, since that can be misleading to users).
  • Fixed various typos (thanks to users mikeantonacci, brondsem, and tony)
  • Format specifiers (e.g., %(prog)s and %(default)s) are now filled in (if possible) in help sections. If there's a missing keyword, then nothing will be filled in. This was issue #27.
  • The package is now a bit more robust to incorrectly spelling module names (#39, courtesy of Gabriel Falcão)
  • Added support for argparse groups (thanks to Fidel Ramirez)