commit 375bde467370a1b00b9d1a41a6700bbbf8e69cac from: Thomas Adam date: Tue Aug 29 16:51:58 2023 UTC portable: release 0.92 commit - 6c8d77541e7fd745bae7bbb3790a7bc3b074d318 commit + 375bde467370a1b00b9d1a41a6700bbbf8e69cac blob - 833cad767eb31ef0bfc730d97cdbb32e7338eee3 blob + 88180d59ac83f5ca9064110fcee03c4855286bb1 --- CHANGELOG +++ CHANGELOG @@ -6,6 +6,28 @@ other than OpenBSD. All changes are on top of the versioned changes listed in CHANGES. +# got-portable 0.92 (2023-08-29) + +* Changes from got-0.92 + +This release also introduces 'gotd', which is got's server implementation. By +extension, other tools are also introduced to work with gotd, and they are: + +* gitwrapper +* gotctl +* gotsh + +For more information about gotd, see gotd(8), as well as the above command man +pages where necessary. Note that gotd's portable implementation uses chroot() +to ensure some separation; this still requires the main gotd binary to run as +the root user. + +To enable gotd and the corresponding other tools which work with it, you must +pass the '--enable-gotd' ./configure flag. + +Further installation instructions can be found in the README.portable file in +the root directory of the project. + # got-portable 0.91 (2023-07-19) * Changes from got-0.91 blob - 7dbd5c4500376c5efd243456b5d1b2bc9990191b blob + 8a422d275c791dae119bb64e43eecdbecde4b9be --- Makefile.am +++ Makefile.am @@ -7,7 +7,7 @@ endif include $(top_builddir)/Makefile.common -EXTRA_DIST = CHANGES CHANGELOG LICENCE util/got-portable-ver.sh +EXTRA_DIST = CHANGES CHANGELOG LICENCE README.portable util/got-portable-ver.sh LDADD = $(LIBOBJS) if HOST_FREEBSD blob - 6f6574a4d359137c0b8e527c7325709ceb433d54 blob + 28cdbdce326c79940a2ec65a8a9b6f61374ee866 --- util/got-portable-ver.sh +++ util/got-portable-ver.sh @@ -7,7 +7,7 @@ # If it's a developer build, it's left as-is. # # Intended to be called from configure.ac (via autogen.sh) -GOT_RELEASE=no +GOT_RELEASE=yes GOT_PORTABLE_VER=0.92 [ -d ".git" -a "$GOT_RELEASE" = "no" ] || { echo "$GOT_PORTABLE_VER" ; exit ; }