- changelog: Added --head-only option to "alembic current",
will print current version plus the symbol
"(head)" if this version is the head or not.
Courtesy Charles-Axel Dein.
parser.add_argument("--head-only",
action="store_true",
help="Only show current version and "
- "wheter or not this is the head revision.")
+ "whether or not this is the head revision.")
positional_help = {
'directory': "location of scripts directory",
.. changelog::
:version: 0.5.0
+ .. change::
+ :tags: feature
+ :pullreq: 28
+
+ Added --head-only option to "alembic current",
+ will print current version plus the symbol
+ "(head)" if this version is the head or not.
+ Courtesy Charles-Axel Dein.
+
.. change::
:tags: bug
:tickets: 110