# HG changeset patch # User Marcin Kasperski # Date 1474835876 -7200 # Node ID 3f11d0a8dd712b4f8c58aa3271c0fdb6883fe17e # Parent e710d5bec0b59d8cdbe286342e62c5843178dedc ChangeLog entry. diff -r e710d5bec0b5 -r 3f11d0a8dd71 HISTORY.txt --- a/HISTORY.txt Sun Sep 25 22:27:20 2016 +0200 +++ b/HISTORY.txt Sun Sep 25 22:37:56 2016 +0200 @@ -1,13 +1,32 @@ -Unreleased +1.0.0 ~~~~~~~~~~~~~ -Introduced configuration. More compact syntax for group definition -(group.NAME), possibility to configure prioritized and ignored paths. +Functional changes: + +1. It is possible to configure aliases which should be ignored by `hg + pushall' or `hg pullall` - by ignore config setting. + +2. It is possible to configure preferred ordering (for example to pull + from nearby servers first) - by prioritize config setting. + +3. Added alternative configuration syntax for groups: group.«NAME» = + list of aliases. This avoids naming conflicts, avoids repetition if + path is to be used both in group and individually, and makes it + possible to define groups globally (not only on repo level). -Improved README. +Example config snippet: + + [all_paths] + prioritize = devel master bitssh + ignore = production bitbucket + group.share = devel bitssh -Fixed help texts (command names were swapped). +Non-functional changes: +4. Extension is now unit-tested, passed tests against wide range + of mercurial versions (and has nice drone badge). + +5. Improved README, some help texts tweaks. 0.6.0 ~~~~~~~~~~~~~