Skip to content
Snippets Groups Projects
Commit 40795751 authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

changelog: update for coming 9.2.0

parent 3ba1c9db
No related branches found
Tags 9.2.0
No related merge requests found
Changelog
=========
9.2.0 - in progress
-------------------
* python3: beta support for Python 3.6+
(thanks to ludovicchabant, martinvonz and rgomes for their hard work)
* prune: clarify error message when no revision were passed,
* evolve: avoid possible race conditions bu locking earlier
* abort: add support for `evolve` and `pick` to `hg abort` (hg-5.1+)
* rewind: add --keep flag to preserve working copy
9.1.1 - in progress
9.2.0 -- 2019-09-28
-------------------
* evolve: check that relocating makes sense in _solvedivergent() (issue5958)
......@@ -21,6 +11,13 @@
* stack: make sure to preserve dependencies, fixes certain complex cases
* prune: improve documentation for `--pair`
* python3: beta support for Python 3.6+
(thanks to ludovicchabant, martinvonz and rgomes for their hard work)
* prune: clarify error message when no revision were passed,
* evolve: avoid possible race conditions bu locking earlier
* abort: add support for `evolve` and `pick` to `hg abort` (hg-5.1+)
* rewind: add --keep flag to preserve working copy
9.1.0 -- 2019-07-29
-------------------
......
mercurial-evolve (9.2.0-1) unstable; urgency=medium
* new upstream release
-- Pierre-Yves David <pierre-yves.david@ens-lyon.org> Sat, 28 Sep 2019 12:49:41 +0200
mercurial-evolve (9.1.0-1) unstable; urgency=medium
* new upstream release
......
......@@ -5,7 +5,7 @@
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
__version__ = b'9.2.0.dev'
__version__ = b'9.2.0'
testedwith = b'4.5.2 4.6.2 4.7 4.8 4.9 5.0 5.1'
minimumhgversion = b'4.5'
buglink = b'https://bz.mercurial-scm.org/'
......@@ -187,7 +187,7 @@
b'topic.active': b'green',
}
__version__ = b'0.17.0.dev'
__version__ = b'0.17.0'
testedwith = b'4.5.2 4.6.2 4.7 4.8 4.9 5.0 5.1'
minimumhgversion = b'4.5'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment