File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
44
55## [ Unreleased]
66
7+ ### Added
8+
9+ - Allow re-initialization with confirmation prompt
10+
11+ ### Fixed
12+
13+ - Check gh auth status before creating PR
14+ - Handle empty commands_source string gracefully
15+
716## [ 2.0.0] - 2026-02-22
817
918### Added
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ impl Config {
4949 pub fn has_commands ( & self ) -> bool {
5050 self . commands_source
5151 . as_ref ( )
52- . map ( |p | !p . as_os_str ( ) . is_empty ( ) )
52+ . map ( |path | !path . as_os_str ( ) . is_empty ( ) )
5353 . unwrap_or ( false )
5454 }
5555
Original file line number Diff line number Diff line change 11use crate :: config:: Config ;
2- use anyhow:: { anyhow , Context , Result } ;
2+ use anyhow:: { Context , Result , anyhow } ;
33use std:: fs;
44use std:: path:: Path ;
55
You can’t perform that action at this time.
0 commit comments