6 - Drop support for Python < 3.5
7 - Remove previously deprecated `stg publish` command
8 - Removed contrib scripts: `stg-swallow`, `stg-fold-files-from`,
9 `stg-dispatch`, `stg-whatchanged`, and `stg-show-old`
12 - The pre-commit hook is now run for `stg refresh`
13 - New `--spill` option for `stg refresh`
16 - Use `python3` in shebangs instead of `python`
17 - `contrib/stgbashprompt.sh` is no longer executable
20 - Importing large patches is much, much faster (#66)
21 - Other performance improvements when dealing with large patches
22 - Repair diffstat when outside work tree root (#62)
23 - Use encoded (string) environment variables on Windows (#79)
28 - Drop support for Python 3.3; Python 2 (2.6 and 2.7) remain
29 deprecated, but supported for one last release
30 - Tutorial is removed; it now exists as part of the website
33 - Python 2.x support is deprecated and will be removed in a future
37 - Support html5 output of docs from asciidoc
38 - Add `--expose` option for `stg pick` to allow picked commit message to
42 - Limit mail diffstat to 72 columns
43 - Added pyproject.toml file for black configuration
44 - Minimum Git version is 2.2.0
45 - Quote stg and subcommand in man page synopsis
46 - Replaced RELEASENOTES with this CHANGELOG.md
47 - Replaces Documentation/SubmittingPatches with CONTRIBUTING.md
50 - Repair MANIFEST.in and generated source dist
51 - Repair importing mail with ": " (colon space) in subject
52 - Fix mail cover letter shortlog
53 - Fix mail cover letter diffstat
54 - `stg series` now only outputs colors when `isatty()`
55 - Repair mail SSL check (#57)
56 - Repair `stg mail` with both `-a` and `-e` options (#58)
57 - Remove empty short-opt for `--no-submodules` of `stg refresh`
58 - Repair build.py for Python 2 with explicit `flush()`
59 - `stgit.refreshsubmodules` added to sample gitconfig
62 - Update docs build system from upstream Git docs
63 - Use coverage contexts to map commands to covered lines
65 - Use GitHub Actions instead of TravisCI
66 - Format StGit source using black formatter
68 ## [0.22] - 2020-03-02
71 - Remove debian packaging; downstream Debian uses its own anyway
74 - Python 2.x support is deprecated and will be removed in the next StGit
76 - `stg publish` is deprecated and will be removed in the next StGit
80 - `stg import` has new --keep-cr option, like `git mailsplit`
83 - `stg new` now includes patch name in log message
84 - `stg branch --rename` can now rename the current branch
85 - `stg branch --create` now works even if the workspace is dirty,
86 consistent with `git checkout`
87 - `stg branch --description` now works on both regular and stgit
89 - `stg edit --diff` now implies `--edit`
90 - `stg refresh` and `stg edit` now reset the committer information,
91 consistent with `stg push`
92 - git notes are now preserved when patches are modified
93 - Tutorial improvements
94 - Many additional tests and test improvements
95 - All stgit commands now use "new" git library infrastructure
98 - `stg branch --create` inherits remote correctly from parent commitish
99 - Patch names are checked earlier to avoid inconsistent stack states
100 - Improved commit data parsing and handling of non-UTF8 encodings
101 - Repair git error messages when checking stgit version from outside a
105 ## [0.21] - 2019-10-28
108 - Faster handling of large patches (#44)
111 - Build reproducibility repairs (Thanks reproducible-builds.org team!)
112 - Python can now be run with optimizations (`python -O`)
113 - `stg log` now prints trailing newline
114 - Improved command line option parsing for `stg log`
117 ## [0.20] - 2019-10-04
120 - `stg patches -d` can now output colored diffs.
121 - `stg publish --overwrite` allows branch to be overwritten instead of
122 creating new commits.
123 - `stg log --clear` deletes the stack's log history. Use with caution.
124 - Fish shell completions for stg.
125 - Zsh completions for stg.
126 - `stg mail --domain` option overrides the host's domain in the message
130 - Branch protection metadata now captured in config instead of
131 .git/patches/<branch>protect file. This updates stgit's metadata
132 format from v2 to v3.
133 - `stg diff` no longer shows binary diffs by default. Use `-O--binary`
134 or add `--binary` to stgit.diff-opts in config.
135 - Diagnostic output is now routed to stderr instead of stdout.
136 Diagnostic output is also now sent to stderr unconditionally, i.e. no
137 more isatty() test (#35).
138 - Converted to "new" lib infrastructure: `show`, `patches`, `diff`,
139 `pick`, `pull`, `rebase`, and `fold`.
142 - `stg show` detects conflicting --applied and --unapplied options.
143 - `stg show --stat` now shows commit headers.
144 - `stg patches --diff` now shows proper diff instead of `b'...'` repr of
146 - `stg diff --range` detects some invalid values (e.g. `-r ..`).
147 - Date parsing is now more portable, only use platform specific `date`
148 as last parsing option. Affects, e.g., `stg refresh --authdate`.
149 - Repaired seach path for templates to avoid looking in Python
150 site-packages directory.
151 - Ensure stdout and stderr are flushed. Rarely affected `stg diff`.
152 - `stg repair` will now fail if extra command line arguments are
154 - Bash completions are now generated in a reproducible manner.
155 - `stg edit --diff` on an empty patch no longer crashes.
156 - `stg pick` no longer fails when picked commit has empty message (#39).
157 - `stg rebase` no longer crashes when there are conflicts (#34).
158 - `stg pick` no longer crashes if --name is not provided when picking a
159 regular commit object.
160 - Improved test coverage for: branch, diff, pick, sync,
161 - New tests for: files, patches, fold, series
162 - Portable use of iconv, sort, and sed in tests.
163 - Linting using flake8 and isort.
164 - All Python code now conforms to PEP-8.
165 - Updated test infrastructure from git 2.20.
166 - Parallel tests with coverage (`make -j4 coverage`) now works.
167 - Documentation build is not included in code coverage.
168 - Repaired log end messages when using `STGIT_SUBPROCESS_LOG=debug`.
169 - Renamed "dunder" instance attributes to improve debugging.
170 - Fail faster when patch name has slash ('/') (#24).
176 - Python 3 support. StGit supports Python 2.6, 2.7, 3.3, 3.4, 3.5, 3.6,
177 and 3.7. PyPy interpreters are also supported.
178 - Submodules are now ignored when checking if working tree is clean.
179 Submodules are also not included by default when refreshing a patch.
180 - Config booleans are now parsed similarly to git-config.
181 - `contrib/stgit.el` is now licenced with GPLv2.
182 - Add continuous integration (travis-ci) and code coverage (coveralls)
184 - Many new test cases were added.
187 - Repair handling of emails with utf-8 bodies containing latin-1
188 characters. Also correctly decode email headers containing quoted
190 - StGit's version is now correct/available in the release archive.
196 - `commit-msg` hook support for easier integration with Gerrit, allowing
197 a Change-Id line to be inserted in the commit message
198 - `stg mail` improvements for 'Suggested-by:' tag and auto generation of
199 Cc for the cover letter based on all tags in the series
200 - `stg mail` bash completion for the --to, --cc and --bcc options based
201 on the content of the [mail "alias"] section of GIT configuration
202 - `stg edit --review` option to add a 'Reviewed-by:' tag
203 - `stg pop --spill` functionality to allow popping a patch from the
204 stack while keeping its modification in the tree
207 - Project page details updated (gna.org has been shut down)
210 - Various fixes and test coverage improvements
213 ## [0.17.1] 2013-09-30
216 - Test suite improvements.
217 - Print tracebacks to stderr.
218 - Run test suite in parallel.
221 - Fix dirty index errors when resolving conflicts.
222 - Fix --authdate date parsing.
228 - `stg delete --top` option for deleting the top patch.
229 - `stg branch --merge` option for merging the work tree changes into the
231 - Support for sending patches both as attachment and inline.
234 - `stg mail` no longer filters explicitly added `--cc` sender address.
235 - `stg refresh` warns when index is dirty.
238 - Fix for parsing the commit header correctly.
239 - Several `stgit.el` (Emacs mode) improvements.
240 - Fix `stg status --reset` error messages.
241 - HTML documentation fix.
242 - Email template fixes.
248 - UI adjustments to better match the Git commands.
249 - `stg status` is an alias for `git status`.
250 - `stg reset --hard` behaves similarly to the corresponding git
252 - `stg branch --cleanup` option to remove the StGit metadata for a
254 - `stg mail` can use `git send-email` directly.
255 - Vim syntax highlighting for StGit commit messages.
258 - Several improvements to the Emacs mode (stgit.el).
265 - The commands "stg add", "stg rm", "stg cp", and "stg resolved" were
266 removed, since there are corresponding Git equivalents.
269 - New core infrastructure for repository operations, including:
270 - Infinite undo/redo operations and corresponding commands.
271 - Automatic rollback of changes following a failed operation (using
272 transactions)---this ensures that StGit commands either succeed or
273 do nothing. Previously, every commands had its own ad hoc
274 implementation of this.
275 - Some commands were added, including
276 - `stg squash`, for combining two or more patches into one.
277 - `stg publish`, for maintaining merge-friendly branches (which are
279 - `stg prev/next` for printing the name of the previous or next patch
281 - The `stg import` and `stg fold` commands support the `-p N` option for
282 stripping leading slashes from diff paths.
283 - The `stg import` and `stg fold` commands support the `--reject` option
284 for leaving rejected hunks in corresponding `*.rej` files.
285 - New patch identification syntax: `<branch>:<patch>` (see documentation
286 for the "stg id" command).
287 - Autosigning of imported patches when `sign.autosign` configuration
289 - A powerful Emacs mode for StGit was added to the "contrib" directory.
290 It displays the patch stack in an Emacs buffer, and can handle all
292 - Man pages and an improved tutorial.
295 - Improved bash tab-completion, automatically generated from the stg
299 ## [0.14.3] 2008-06-08
300 ## [0.14.2] 2008-13-24
301 ## [0.14.1] 2007-12-11