Blob


1 * got 0.11; 2019-08-23
2 - add 'got tag' command
3 - add 'got cat' command
4 - support quick cancellation in 'tog blame' view
5 - fix search prompt location in split-screen tog views
7 * got 0.10; 2019-08-21
8 - fix and simplify blame algorithm
10 * got 0.9; 2019-08-19
11 - fix blame bug where lines were annotated with wrong commit
12 - man page spelling fixes (patch by Hiltjo Posthuma)
13 - fix uninitialized 'editor' variable (found by Hiltjo Posthuma)
14 - make 'got revert' ignore unversioned files instead of aborting (semarie@)
15 - fix "last commit cannot be folded" histedit check with reordered commits
17 * got 0.8; 2019-08-16
18 - write tree entries the way git likes it to prevent git index corruption
19 - make 'got blame' show line numbers, dates, and author names
20 - add GOT_LOG_DEFAULT_LIMIT env var for setting a got log -l default
22 * got 0.7; 2019-08-13
23 - properly parse timestamps in commit objects as UTC (patch by Hiltjo Posthuma)
24 - strip Git GPG signatures from log messages
25 - fix regression: don't try to parse "leightweight" tags as real tag objects
27 * got 0.6; 2019-08-13
28 - 'got log' and 'tog log' now display tags in addition to branch references
29 - 'got ref' can now be used to create symbolic references
30 - use <limits.h> instead of <sys/limits.h> (patch by Thomas Klausner)
31 - fix crash if 'got rebase' has no commits to rebase (with semarie@)
32 - annotate symlinks with @ in 'got tree' and 'tog tree'
34 * got 0.5; 2019-08-12
35 - fix blame with single-commit history and with files without \n
36 - fix crashes in tog when blame returns no results on a file (found by otto@)
37 - man page improvements (bentley@)
39 * got 0.4; 2019-08-11
40 - add support for tag objects to 'got diff'
41 - fix tog log -r option (patch by semarie@)
42 - fix use of potentially out-of-date errno values (patch by Hiltjo Posthuma)
43 - fix getline(3) return value check (patch by Hiltjo Posthuma)
44 - use Oo/Oc/Op instead of plain brackets in man pages (patch by bentley@)
45 - fix spurious failures of test_revert_patch_one_change due to race condition
47 * got 0.3; 2019-08-10
48 - fix bug where 'revert -p' would delete all lines following a reverted change
49 - fix merge bug inherited from OpenRCS, affecting lines with leading .
50 - fix man page installation during manual 'make install' from plain tarball
52 * got 0.2; 2019-08-09
53 - improve error message if helper binaries fail to unveil(2)
54 - add support for tags to -c options of some got commands
55 - attempt to reject GOT_AUTHOR values without an email address because git
56 is unable to parse resulting commit objects
57 - fix build on OpenBSD/sparc64 (gcc)
59 * got 0.1; 2019-08-09
60 initial release; see git repository history for changes up to this point