Skip to content

Commit 621cc8b

Browse files
committed
chore: update CHANGELOG with recent fixes
1 parent eb85f2a commit 621cc8b

3 files changed

Lines changed: 11 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff 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

src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

src/sync.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use crate::config::Config;
2-
use anyhow::{anyhow, Context, Result};
2+
use anyhow::{Context, Result, anyhow};
33
use std::fs;
44
use std::path::Path;
55

0 commit comments

Comments
 (0)