diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0ee8c01..466df71 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.3.0" + ".": "0.1.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index b1922ec..6a9e2ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## 0.1.0 (2026-01-04) + + +### Features + +* <Tab> for toggle key ([1dbe1cc](https://github.com/struong/ghune/commit/1dbe1cc65b9b4520afea4d13945aa7054a6e41b1)) +* Add [Tab] hint to inactive panel for easier navigation ([#7](https://github.com/struong/ghune/issues/7)) ([53d1060](https://github.com/struong/ghune/commit/53d1060d9b4f93053c952be1c24fb304838f9dcf)) +* add deletion confirmation dialog ([#6](https://github.com/struong/ghune/issues/6)) ([55d9197](https://github.com/struong/ghune/commit/55d9197bc9992fdf7452287fe6cfc21c87b58a4a)) +* add spacebar as alternative key to stage/unstage repos ([9bf4fca](https://github.com/struong/ghune/commit/9bf4fca09c51c18b494183e1cb4de19570864fcb)) +* add spacebar as alternative key to stage/unstage repos ([5c979a3](https://github.com/struong/ghune/commit/5c979a3852943b059b9fdf5d26ddfabc339013d5)) +* initial release ([d3d7b8a](https://github.com/struong/ghune/commit/d3d7b8a79ae7e1b9b5d40d5f33c85b0fa02c754b)) +* rename prune -> ghune ([275bae6](https://github.com/struong/ghune/commit/275bae60e875f41f89f11f2a116ca55b78a8be5a)) +* use file-based token storage instead of keychain ([#8](https://github.com/struong/ghune/issues/8)) ([f5e8135](https://github.com/struong/ghune/commit/f5e8135d4499ec2f209174a202f40a891e275419)) + + +### Bug Fixes + +* cargo clippy errors ([6414309](https://github.com/struong/ghune/commit/641430939b7b6bd81a7778671f432371f7626356)) +* keyring works on mac ([8785330](https://github.com/struong/ghune/commit/878533000c3838a1f16a7bb5024cd46d95b71fc9)) +* release is master aware ([f66544a](https://github.com/struong/ghune/commit/f66544ae1448d35da4a01c10352496d9ac593b1f)) + ## [0.3.0](https://github.com/struong/ghune/compare/v0.2.0...v0.3.0) (2025-12-31) diff --git a/Cargo.lock b/Cargo.lock index ee0e003..ae1b90a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -591,7 +591,7 @@ dependencies = [ [[package]] name = "ghune" -version = "0.3.0" +version = "0.1.0" dependencies = [ "chrono", "clap", diff --git a/Cargo.toml b/Cargo.toml index fd52dcc..56fd9ed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ghune" description = "Bulk-delete Github repos from the terminal" -version = "0.3.0" +version = "0.1.0" edition = "2021" license = "MIT" repository = "https://github.com/struong/ghune"