comparison HISTORY.txt @ 54:3f11d0a8dd71

ChangeLog entry.
author Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
date Sun, 25 Sep 2016 22:37:56 +0200
parents c27e23a3509c
children 35d3c8ef6fe9
comparison
equal deleted inserted replaced
53:e710d5bec0b5 54:3f11d0a8dd71
1 Unreleased 1 1.0.0
2 ~~~~~~~~~~~~~ 2 ~~~~~~~~~~~~~
3 3
4 Introduced configuration. More compact syntax for group definition 4 Functional changes:
5 (group.NAME), possibility to configure prioritized and ignored paths.
6 5
7 Improved README. 6 1. It is possible to configure aliases which should be ignored by `hg
7 pushall' or `hg pullall` - by ignore config setting.
8 8
9 Fixed help texts (command names were swapped). 9 2. It is possible to configure preferred ordering (for example to pull
10 from nearby servers first) - by prioritize config setting.
10 11
12 3. Added alternative configuration syntax for groups: group.«NAME» =
13 list of aliases. This avoids naming conflicts, avoids repetition if
14 path is to be used both in group and individually, and makes it
15 possible to define groups globally (not only on repo level).
16
17 Example config snippet:
18
19 [all_paths]
20 prioritize = devel master bitssh
21 ignore = production bitbucket
22 group.share = devel bitssh
23
24 Non-functional changes:
25
26 4. Extension is now unit-tested, passed tests against wide range
27 of mercurial versions (and has nice drone badge).
28
29 5. Improved README, some help texts tweaks.
11 30
12 0.6.0 31 0.6.0
13 ~~~~~~~~~~~~~ 32 ~~~~~~~~~~~~~
14 33
15 Release by Marcin Kasperski 34 Release by Marcin Kasperski