- First release on new repository, also available via pypi (https://pypi.org/project/git-pile/):
- `pip3 install [ --user | --upgrade ] git-pile`
- For installation via pip there is missing integration with man pages: they are not correctly installed. This will be fixed in a later version
- `git-pile format-patch` now checks if the commit used as baseline is available as a remote ref: it was a very common cause of invalid patch series when creating a v2 by applying the previous version to the tree and then reworking it
- `git-pile genbranch` learned a `--dirty` option that just applies the patches with `git apply` rather than re-creating the branch with `git am`. The speedup is in the order of 100x on a laptop and can be used for CI integration or as a quick check if the pile is in good shape.
- Check for minimum python version and alert user. We already depended on features from python 3.6, but we were not checking the version correctly
- PILE_RESULT_HEAD is not used anymore as depending on the git version accessing that file may only work on a single worktree checkout