diff --git a/.changes/0.2.2.md b/.changes/0.2.2.md new file mode 100644 index 0000000..602738a --- /dev/null +++ b/.changes/0.2.2.md @@ -0,0 +1,5 @@ +## 0.2.2 - 2022-07-22 + +### Added + +- Make it possible to configure protected branches, using `git config`. See `git-bonsai --help` for details. diff --git a/.changes/unreleased/Added-20220722-204135.yaml b/.changes/unreleased/Added-20220722-204135.yaml deleted file mode 100644 index 97f5574..0000000 --- a/.changes/unreleased/Added-20220722-204135.yaml +++ /dev/null @@ -1,4 +0,0 @@ -kind: Added -body: Make it possible to configure protected branches, using `git config`. See `git-bonsai - --help` for details. -time: 2022-07-22T20:41:35.140765582+02:00 diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ca9d33..8b46b4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,37 @@ # Changelog -All notable changes to this project will be documented in this file. -The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), -adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), -and is generated by [Changie](https://github.com/miniscruff/changie). +## 0.2.2 - 2022-07-22 +### Added -No releases yet, this file will be updated when generating your first release. +- Make it possible to configure protected branches, using `git config`. See `git-bonsai --help` for details. + +# Changelog + +## 0.2.1 - 2021-05-25 + +### Changed + +- Internal: code is more Rust-like now (#4). +- Internal: CI now checks formatting and runs clippy linter. + +### Fixed + +- git-bonsai no longer fails when a branch is checked out in a separate worktree. Worktree branches are just ignored (#5). + +## 0.2.0 - 2020-03-29 + +### Added + +- Added a --no-fetch option. +- Implemented removal of identical branches. +- Added integration tests. +- The CI now builds git-bonsai on Windows and macOS. + +### Changed + +- Improved README. + +## 0.1.0 - 2020-03-22 + +First release. diff --git a/Cargo.lock b/Cargo.lock index 44feb9b..d96513b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -204,7 +204,7 @@ dependencies = [ [[package]] name = "git-bonsai" -version = "0.2.2-alpha" +version = "0.2.2" dependencies = [ "assert_fs", "claim", diff --git a/Cargo.toml b/Cargo.toml index 95acaaa..2406a25 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-bonsai" -version = "0.2.2-alpha" +version = "0.2.2" authors = ["Aurélien Gâteau "] edition = "2018" description = "Command-line tool to clean the branches of your git garden" diff --git a/tasks.py b/tasks.py index 59a1941..a918d3f 100644 --- a/tasks.py +++ b/tasks.py @@ -121,7 +121,7 @@ def tag(c): def get_artifact_list() -> List[Path]: assert ARTIFACTS_DIR.exists() - return list(ARTIFACTS_DIR.glob("*.tar.gz")) + list(ARTIFACTS_DIR.glob("*.zip")) + return list(ARTIFACTS_DIR.glob("*.tar.bz2")) @task