packaging: prepare release 8.4.0 stable 8.4.0
authorPierre-Yves David <pierre-yves.david@octobus.net>
Tue, 22 Jan 2019 20:25:36 -0500
branchstable
changeset 4365 8c4289d0e91e
parent 4364 b74a31c69ad5
child 4366 628c1f0c7921
packaging: prepare release 8.4.0
CHANGELOG
debian/changelog
hgext3rd/evolve/metadata.py
hgext3rd/topic/__init__.py
--- a/CHANGELOG	Wed Jan 23 09:05:12 2019 -0500
+++ b/CHANGELOG	Tue Jan 22 20:25:36 2019 -0500
@@ -1,33 +1,33 @@
 Changelog
 =========
 
-8.4.0 - in progress
+8.4.0 -- 2019-12-22
 -------------------
 
-  * split: improve and update the user prompt (BC)
-  * split: make it possible to drop change during a split
-  * split: no longer accept revision with --rev (BC)
-  * split: accept file patterns
-  * split: support for non interactive splits
+  * compat: add compatibility with Mercurial 4.9
+  * compat: drop compatibility with Mercurial 4.3
   * evolve: avoid potential crash when stabilizing orphan merges
-  * evolve: pick right destination in split+prune cases issue5686 (4.9 only)
+  * evolve: pick right destination in split+prune cases issue5686 (hg-4.9 only)
   * evolve: prioritize --rev/--any/--all option over obsolete working directory
   * fold: concatenate commit message in revision order
-  * push: have `--publish` overrule the `auto-publish` config
   * next: evolve aspiring children by default (use --no-evolve to skip)
   * next: pick lower part of a split as destination
-  * compat: drop compatibility with Mercurial 4.3
-  * compat: add compatibility with Mercurial 4.9
-
-topic:
+  * push: have `--publish` overrule the `auto-publish` config
+  * split: accept file patterns
+  * split: improve and update the user prompt (BC)
+  * split: make it possible to drop change during a split
+  * split: no longer accept revision without --rev (BC)
+  * split: support for non interactive splits
 
-  * topics: improve the message around topic changing
+topic 0.13.0
+
   * stack: introduce a --children flag (see help for details)
+  * stack: support for '#stack[idx]' absolute indexing in revset (hg-4.9+ only)
+  * topic: support for '#topic[idx]' relative indexing in revset (hg-4.9+ only)
   * topic: make --age compatible with the usual other display for `hg topic`
-  * stack: support for '#stack[idx]' absolute indexing in revset (4.9+ only)
-  * topic: support for '#topic[idx]' relative indexing in revset (4.9+ only)
+  * topics: improve the message around topic changes
 
-8.3.3 -- 2017-12-24
+8.3.3 -- 2018-12-24
 -------------------
 
   * evolve: properly detect unresolved merge conflict (issue-5966)
@@ -35,7 +35,7 @@
   * test: avoid leaking `hg serve` process
   * topic: fix error message for the `ngtip` revset
 
-8.3.2 -- 2017-11-27
+8.3.2 -- 2018-11-27
 -------------------
 
   * evolve: not longer attempt to translate revision's descriptions (issue6016)
--- a/debian/changelog	Wed Jan 23 09:05:12 2019 -0500
+++ b/debian/changelog	Tue Jan 22 20:25:36 2019 -0500
@@ -1,3 +1,9 @@
+mercurial-evolve (8.4.0) UNRELEASED; urgency=medium
+
+  * new upstream release
+
+ -- Pierre-Yves David <pierre-yves.david@ens-lyon.org>  Tue, 22 Jan 2019 20:24:11 -0500
+
 mercurial-evolve (8.3.3-1) unstable; urgency=medium
 
   * new upstream release
--- a/hgext3rd/evolve/metadata.py	Wed Jan 23 09:05:12 2019 -0500
+++ b/hgext3rd/evolve/metadata.py	Tue Jan 22 20:25:36 2019 -0500
@@ -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__ = '8.4.0.dev'
+__version__ = '8.4.0'
 testedwith = '4.4.2 4.5.2 4.6.2 4.7 4.8 4.9'
 minimumhgversion = '4.4'
 buglink = 'https://bz.mercurial-scm.org/'
--- a/hgext3rd/topic/__init__.py	Wed Jan 23 09:05:12 2019 -0500
+++ b/hgext3rd/topic/__init__.py	Tue Jan 22 20:25:36 2019 -0500
@@ -177,9 +177,9 @@
               'topic.active': 'green',
              }
 
-__version__ = '0.13.0.dev'
+__version__ = '0.13.0'
 
-testedwith = '4.4.2 4.5.2 4.6.2 4.7 4.8'
+testedwith = '4.4.2 4.5.2 4.6.2 4.7 4.8 4.9'
 minimumhgversion = '4.4'
 buglink = 'https://bz.mercurial-scm.org/'