-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCHANGELOG
75 lines (41 loc) · 1.65 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
0.4.1
=====
FIXED: Fixed resolve deleting remaining patches (#28)
0.4.0
=====
- ADDED: `ply save` now prompts user to edit commit message
- ADDED: -m, --message options to `ply restore`
- REMOVED: -p, --prefix option from `ply save`
- FIXED: Avoid unecessarily chatty diffs in `ply save`
- FIXED: Better handle patch renaming (#26, #27)
0.3.8
=====
- FIXED: Normalize whitespace in subject (#16)
- ADDED: Check to ensure 'user.name' and 'user.email' configs are set (#25)
0.3.7
=====
- CHANGED: Abort now rolls back to last upstream commit
0.3.6
=====
- CHANGED: Link is now idempotent: re-linking will issue a warning but will
return a zero exit code
- CHANGED: Abort is now idempotent: aborting when nothing is in-progress will
issue a warning but return a zero exit code
0.3.5
=====
- FIXED: Better error when threeway-merge fails (#8)
- FIXED: Better error message when restore is already in-progress (#12)
- FIXED: Use absolute path when linking working-repo to patch-repo (#13)
- FIXED: Avoid unnecessary fetch remotes on skip/resolve/save (#7)
- FIXED: No longer leaves unused patch files in the working-repo (#9)
0.3.4
=====
- NEW OPTION: --no-fetch - Disable fetching of remotes on restore.
- FIXED: Git notes not persisting across a rebase. Reverted back to annotating
in the commit message itself. (#4)
- FIXED: Git version differences causing chatty diffs by hardcoding it to
constant value. (#5)
- FIXED: SHA1 missing issue which prevented three-way merges. (#3)
- FIXED: Incorrect patch counter on resolve. (#2)
- FIXED: Issue where updated patches were miscounted when adding a new patch.
(#1)