# HG changeset patch # User Matt Harbison # Date 1594836372 14400 # Node ID 3ad0855cc602057498604e7658d97233f7bc7342 # Parent 1ff5070c0ab481250fdebc104ef3073a8cee7978 phabupdate: allow revisions to be marked "closed" (Yes, the transaction name and final state in the comment here do differ.) Differential Revision: https://phab.mercurial-scm.org/D8753 diff -r 1ff5070c0ab4 -r 3ad0855cc602 hgext/phabricator.py --- a/hgext/phabricator.py Wed Jul 15 14:03:55 2020 -0400 +++ b/hgext/phabricator.py Wed Jul 15 14:06:12 2020 -0400 @@ -2165,6 +2165,7 @@ (b'', b'request-review', False, _(b'request review on revisions')), (b'', b'abandon', False, _(b'abandon revisions')), (b'', b'reclaim', False, _(b'reclaim revisions')), + (b'', b'close', False, _(b'close revisions')), (b'', b'plan-changes', False, _(b'plan changes for revisions')), (b'm', b'comment', b'', _(b'comment on the last revision')), ], @@ -2181,6 +2182,7 @@ transactions = [ b'abandon', b'accept', + b'close', b'plan-changes', b'reclaim', b'reject',