diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c57c6c5..efb395c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # Changelog +## [2.0.0-beta.3] 2022-08-28 + +### Added +- Add install targets for `contrib/` directory. + +### Changed +- Use `git` executable instead of `libgit2` for all status and index + operations to improve compatibility with sparse index checkouts + (#195). +- Show commit hash in `stg version` output when not built from tag. +- Use `cargo --locked` consistently in Makefiles. +- Use "patch" extension in temp file name when editing a patch with a + diff. +- Updated transient dependencies in Cargo.lock. + +### Fixed +- Repair `stg branch --describe` panic when run without arguments +- Repair zsh completions for `git branch` +- Repair `stgit.el` to use compatible `stg show` commands (#202). +- Repair `stg uncommit --to` to work with annotated tags (#203). +- Repair `make install` to not install cargo tracking files. + + ## [2.0.0-beta.2] 2022-08-05 ### Changed diff --git a/Cargo.lock b/Cargo.lock index b6c7eb9c..125da0aa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -547,7 +547,7 @@ dependencies = [ [[package]] name = "stgit" -version = "2.0.0-beta.2" +version = "2.0.0-beta.3" dependencies = [ "anyhow", "atty", diff --git a/Cargo.toml b/Cargo.toml index 7faeaa0f..97ba830d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stgit" -version = "2.0.0-beta.2" +version = "2.0.0-beta.3" edition = "2021" authors = [ "Catalin Marinas ",