##// END OF EJS Templates
relnotes: mention removed support for mixed log graph lines...
Martin von Zweigbergk -
r42521:bcb1a2b6 default
parent child Browse files
Show More
@@ -1,24 +1,31 b''
1 == New Features ==
1 == New Features ==
2
2
3 * New config `commands.commit.post-status` shows status after successful
3 * New config `commands.commit.post-status` shows status after successful
4 commit.
4 commit.
5
5
6
6
7 == New Experimental Features ==
7 == New Experimental Features ==
8
8
9 * New config `experimental.log.topo` makes `hg log -G` use
9 * New config `experimental.log.topo` makes `hg log -G` use
10 topological sorting. This is especially useful for aliases since it
10 topological sorting. This is especially useful for aliases since it
11 lets the alias accept an `-r` option while still using topological
11 lets the alias accept an `-r` option while still using topological
12 sorting with or without the `-r` (unlike if you use the `sort(...,
12 sorting with or without the `-r` (unlike if you use the `sort(...,
13 topo)` revset).
13 topo)` revset).
14
14
15
15
16 == Bug Fixes ==
16 == Bug Fixes ==
17
17
18
18
19 == Backwards Compatibility Changes ==
19 == Backwards Compatibility Changes ==
20
20
21 * Removed (experimental) support for log graph lines mixing
22 parent/grandparent styles. Setting
23 e.g. `experimental.graphstyle.parent = !` and
24 `experimental.graphstyle.grandparent = 3.` would use `!` for the
25 first three lines of the graph and then `.`. This is no longer
26 supported.
27
21
28
22 == Internal API Changes ==
29 == Internal API Changes ==
23
30
24 * Matchers are no longer iterable. Use `match.files()` instead.
31 * Matchers are no longer iterable. Use `match.files()` instead.
General Comments 0
You need to be logged in to leave comments. Login now