Skip to content

Commit 1fc1a7c

Browse files
KayleeBeyeneclaude
andcommitted
Bump version to 0.2.3
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent a2332fa commit 1fc1a7c

5 files changed

Lines changed: 23 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.3] - 2025-11-29
11+
12+
### Added
13+
14+
- **TUI vim keybindings** - Navigate with `h/j/k/l` keys in addition to arrow keys
15+
- **Unified backup/export restore** - `backup restore` now auto-detects and restores both internal backup format and export format files (YAML/JSON)
16+
17+
### Fixed
18+
19+
- CSV header detection now handles edge cases more reliably
20+
21+
## [0.2.2] - 2025-11-29
22+
23+
### Fixed
24+
25+
- Minor patch release
26+
1027
## [0.2.1] - 2025-11-29
1128

1229
### Added
@@ -76,7 +93,9 @@ mv ~/.envelope ~/.config/envelope-cli
7693
- Cross-platform support (Linux, macOS, Windows)
7794
- Rust 1.70+ required
7895

79-
[Unreleased]: https://github.com/KayleeBeyene/EnvelopeCLI/compare/v0.2.1...HEAD
96+
[Unreleased]: https://github.com/KayleeBeyene/EnvelopeCLI/compare/v0.2.3...HEAD
97+
[0.2.3]: https://github.com/KayleeBeyene/EnvelopeCLI/compare/v0.2.2...v0.2.3
98+
[0.2.2]: https://github.com/KayleeBeyene/EnvelopeCLI/compare/v0.2.1...v0.2.2
8099
[0.2.1]: https://github.com/KayleeBeyene/EnvelopeCLI/compare/v0.2.0...v0.2.1
81100
[0.2.0]: https://github.com/KayleeBeyene/EnvelopeCLI/compare/v0.1.0...v0.2.0
82101
[0.1.0]: https://github.com/KayleeBeyene/EnvelopeCLI/releases/tag/v0.1.0

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "envelope-cli"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
edition = "2021"
55
authors = ["Kaylee Beyene"]
66
description = "Terminal-based zero-based budgeting application"

RELEASING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ After release, users can install via:
139139

140140
| Version | Date | Notes |
141141
|---------|------|-------|
142+
| 0.2.3 | 2025-11-29 | Vim keybindings, unified backup/export restore |
142143
| 0.2.2 | 2025-11-29 | Patch release |
143144
| 0.2.1 | 2025-11-29 | Category group editing, bulk delete, header-less CSV |
144145
| 0.2.0 | 2025-11-29 | XDG-compliant data paths, env var override |

src/backup/restore.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ fn parse_backup_contents(path: &Path, contents: &str) -> EnvelopeResult<BackupFi
5858
}
5959
}
6060

61-
6261
/// Handles restoring from backups
6362
pub struct RestoreManager {
6463
paths: EnvelopePaths,

0 commit comments

Comments
 (0)