2 - always show the input path when realpath(3) returns an error
3 - preserve log message when an error occurs during commit, tag, or import
4 - ignore empty files in refs directory instead of throwing errors
5 - show file mode differences (executable bit) when diffing in-repository trees
6 - fix handling of executable-bit changes during update, commit, and status
7 - improve tog's responsiveness after loading hundreds of thousands of commits
8 - fix tog performance bug which made searching through commits very slow
9 - add 'got integrate' command for merging a branch back to its parent branch
10 - show content from the merge-base file in 3-way merge conflicts, if available
11 - improved indication of 3-way merge inputs in conflict marker labels
12 - handle read errors in got_packidx_init_hdr (found by jj@ with scan-build)
13 - remove worklist code; it was only used to unlink files already unlinked
14 - show bad reference names in error messages to make such errors more clear
15 - add -w (ignore whitespace) option to 'got diff'
16 - improved coding style and error handling in diff3 code
18 * got 0.17; 2019-10-06
19 - make 'got branch' without args show work tree's branch (requested by benno)
20 - show temporary branch in 'got branch -l' during rebase and histedit
21 - refresh references when 'tog log' view is refreshed with Ctrl+L
22 - make 'got status' read .gitignore files; support **/ and /**/ in patterns
23 - handle empty trees during 'import' and 'checkout' (issue reported by sthen)
24 - show only whitelisted commit headers in 'got log' (semarie)
25 - properly handle getline(3) return type as ssize_t (hiltjo)
27 * got 0.16; 2019-09-23
28 - replace fgetln(3) with getline(3) for portability (patch by Steven McDonald)
29 - fix implicit time.h includes (patch by Steven McDonald)
30 - fix tiny memory leaks and other minor bugs found by jj@ with scan-build
31 - fix missing error checks (found by jj@ with scan-build and by Steven McDonald)
32 - avoid a couple of potential NULL derefs (found by jj@ with scan-build)
33 - fix cosmetic display issues involving \n and TABs in tog(1)
35 * got 0.15; 2019-09-08
36 - use author name/email from ~/.gitconfig if GOT_AUTHOR is not set
37 - obtain repo format version and commit author name/email from .git/config
38 - fix line-wrap for lines spanning the terminal in tog diff view
39 - make 'got status' ignore inaccessible directories (reported by semarie)
40 - unstage may need to write to repository; fix unveil(2) call accordingly
41 - fix modified files not shown by 'got status' after committing staged changes
43 * got 0.14; 2019-09-03
44 - fix tag_list test failure on single-day-digit dates (patch by Evan Silberman)
45 - prevent theoretical double-free with non-OpenBSD asprintf (found by jasper@)
46 - fix NULL deref in got_error_from_errno via got_error_uuid (found by jasper@)
47 - make tog release its work tree lock before going into main loop
48 - 'got stage' writes to repository, fix unveil(2) call accordingly
50 * got 0.13; 2019-08-30
51 - fix several possible leaks, use after frees, and NULL derefs (hiltjo)
52 - tog: mbs2ws: fix sizeof of element for memory allocation (hiltjo)
53 - fix deletion of branches stored in packed-refs
54 - fix 'got log path' in a work tree with a path prefix (with Evan Silberman)
56 * got 0.12; 2019-08-26
57 - add support for path arguments to 'got cat'
58 - make 'got log -p path' display patches for the specified path only
59 - allow creating branches based on commit IDs
60 - prevent deletion of the work tree's current branch
61 - detect and ignore Git submodules
62 - indicate non-existent path arguments in 'got status'
63 - make 'got diff' error for non-existent path arguments
64 - make 'got tag -l' list tags by time stamp in descending order
65 - fix reading pack index files with large offsets (patch by Hiltjo Posthuma)
67 * got 0.11; 2019-08-23
68 - add 'got tag' command
69 - add 'got cat' command
70 - support quick cancellation in 'tog blame' view
71 - fix search prompt location in split-screen tog views
73 * got 0.10; 2019-08-21
74 - fix and simplify blame algorithm
77 - fix blame bug where lines were annotated with wrong commit
78 - man page spelling fixes (patch by Hiltjo Posthuma)
79 - fix uninitialized 'editor' variable (found by Hiltjo Posthuma)
80 - make 'got revert' ignore unversioned files instead of aborting (semarie@)
81 - fix "last commit cannot be folded" histedit check with reordered commits
84 - write tree entries the way git likes it to prevent git index corruption
85 - make 'got blame' show line numbers, dates, and author names
86 - add GOT_LOG_DEFAULT_LIMIT env var for setting a got log -l default
89 - properly parse timestamps in commit objects as UTC (patch by Hiltjo Posthuma)
90 - strip Git GPG signatures from log messages
91 - fix regression: don't try to parse "leightweight" tags as real tag objects
94 - 'got log' and 'tog log' now display tags in addition to branch references
95 - 'got ref' can now be used to create symbolic references
96 - use <limits.h> instead of <sys/limits.h> (patch by Thomas Klausner)
97 - fix crash if 'got rebase' has no commits to rebase (with semarie@)
98 - annotate symlinks with @ in 'got tree' and 'tog tree'
100 * got 0.5; 2019-08-12
101 - fix blame with single-commit history and with files without \n
102 - fix crashes in tog when blame returns no results on a file (found by otto@)
103 - man page improvements (bentley@)
105 * got 0.4; 2019-08-11
106 - add support for tag objects to 'got diff'
107 - fix tog log -r option (patch by semarie@)
108 - fix use of potentially out-of-date errno values (patch by Hiltjo Posthuma)
109 - fix getline(3) return value check (patch by Hiltjo Posthuma)
110 - use Oo/Oc/Op instead of plain brackets in man pages (patch by bentley@)
111 - fix spurious failures of test_revert_patch_one_change due to race condition
113 * got 0.3; 2019-08-10
114 - fix bug where 'revert -p' would delete all lines following a reverted change
115 - fix merge bug inherited from OpenRCS, affecting lines with leading .
116 - fix man page installation during manual 'make install' from plain tarball
118 * got 0.2; 2019-08-09
119 - improve error message if helper binaries fail to unveil(2)
120 - add support for tags to -c options of some got commands
121 - attempt to reject GOT_AUTHOR values without an email address because git
122 is unable to parse resulting commit objects
123 - fix build on OpenBSD/sparc64 (gcc)
125 * got 0.1; 2019-08-09
126 initial release; see git repository history for changes up to this point