2 - replace fgetln(3) with getline(3) for portability (patch by Steven McDonald)
3 - fix implicit time.h includes (patch by Steven McDonald)
4 - fix tiny memory leaks and other minor bugs found by jj@ with scan-build
5 - fix missing error checks (found by jj@ with scan-build and by Steven McDonald)
6 - avoid a couple of potential NULL derefs (found by jj@ with scan-build)
7 - fix cosmetic display issues involving \n and TABs in tog(1)
10 - use author name/email from ~/.gitconfig if GOT_AUTHOR is not set
11 - obtain repo format version and commit author name/email from .git/config
12 - fix line-wrap for lines spanning the terminal in tog diff view
13 - make 'got status' ignore inaccessible directories (reported by semarie)
14 - unstage may need to write to repository; fix unveil(2) call accordingly
15 - fix modified files not shown by 'got status' after committing staged changes
17 * got 0.14; 2019-09-03
18 - fix tag_list test failure on single-day-digit dates (patch by Evan Silberman)
19 - prevent theoretical double-free with non-OpenBSD asprintf (found by jasper@)
20 - fix NULL deref in got_error_from_errno via got_error_uuid (found by jasper@)
21 - make tog release its work tree lock before going into main loop
22 - 'got stage' writes to repository, fix unveil(2) call accordingly
24 * got 0.13; 2019-08-30
25 - fix several possible leaks, use after frees, and NULL derefs (hiltjo)
26 - tog: mbs2ws: fix sizeof of element for memory allocation (hiltjo)
27 - fix deletion of branches stored in packed-refs
28 - fix 'got log path' in a work tree with a path prefix (with Evan Silberman)
30 * got 0.12; 2019-08-26
31 - add support for path arguments to 'got cat'
32 - make 'got log -p path' display patches for the specified path only
33 - allow creating branches based on commit IDs
34 - prevent deletion of the work tree's current branch
35 - detect and ignore Git submodules
36 - indicate non-existent path arguments in 'got status'
37 - make 'got diff' error for non-existent path arguments
38 - make 'got tag -l' list tags by time stamp in descending order
39 - fix reading pack index files with large offsets (patch by Hiltjo Posthuma)
41 * got 0.11; 2019-08-23
42 - add 'got tag' command
43 - add 'got cat' command
44 - support quick cancellation in 'tog blame' view
45 - fix search prompt location in split-screen tog views
47 * got 0.10; 2019-08-21
48 - fix and simplify blame algorithm
51 - fix blame bug where lines were annotated with wrong commit
52 - man page spelling fixes (patch by Hiltjo Posthuma)
53 - fix uninitialized 'editor' variable (found by Hiltjo Posthuma)
54 - make 'got revert' ignore unversioned files instead of aborting (semarie@)
55 - fix "last commit cannot be folded" histedit check with reordered commits
58 - write tree entries the way git likes it to prevent git index corruption
59 - make 'got blame' show line numbers, dates, and author names
60 - add GOT_LOG_DEFAULT_LIMIT env var for setting a got log -l default
63 - properly parse timestamps in commit objects as UTC (patch by Hiltjo Posthuma)
64 - strip Git GPG signatures from log messages
65 - fix regression: don't try to parse "leightweight" tags as real tag objects
68 - 'got log' and 'tog log' now display tags in addition to branch references
69 - 'got ref' can now be used to create symbolic references
70 - use <limits.h> instead of <sys/limits.h> (patch by Thomas Klausner)
71 - fix crash if 'got rebase' has no commits to rebase (with semarie@)
72 - annotate symlinks with @ in 'got tree' and 'tog tree'
75 - fix blame with single-commit history and with files without \n
76 - fix crashes in tog when blame returns no results on a file (found by otto@)
77 - man page improvements (bentley@)
80 - add support for tag objects to 'got diff'
81 - fix tog log -r option (patch by semarie@)
82 - fix use of potentially out-of-date errno values (patch by Hiltjo Posthuma)
83 - fix getline(3) return value check (patch by Hiltjo Posthuma)
84 - use Oo/Oc/Op instead of plain brackets in man pages (patch by bentley@)
85 - fix spurious failures of test_revert_patch_one_change due to race condition
88 - fix bug where 'revert -p' would delete all lines following a reverted change
89 - fix merge bug inherited from OpenRCS, affecting lines with leading .
90 - fix man page installation during manual 'make install' from plain tarball
93 - improve error message if helper binaries fail to unveil(2)
94 - add support for tags to -c options of some got commands
95 - attempt to reject GOT_AUTHOR values without an email address because git
96 is unable to parse resulting commit objects
97 - fix build on OpenBSD/sparc64 (gcc)
100 initial release; see git repository history for changes up to this point