diff --git a/CHANGELOG.md b/CHANGELOG.md index f90026d..e346560 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/), and this project adheres to [Semantic Versioning](https://semver.org/). +## [0.0.39] - 2026-04-24 + +### Added +- `reeln init` command — guided first-time setup with interactive sport selection, directory configuration, and config creation +- Non-interactive mode: `reeln init --sport hockey --source-dir ~/replays --output-dir ~/games` + +### Fixed +- Plugin install/uninstall now finds `uv` in common paths (`~/.local/bin`, `~/.cargo/bin`, `/opt/homebrew/bin`) when shell PATH is minimal (fixes "No module named pip" in Tauri/GUI apps) + ## [0.0.38] - 2026-04-07 ### Added diff --git a/reeln/__init__.py b/reeln/__init__.py index 1feac2c..4d0f74b 100644 --- a/reeln/__init__.py +++ b/reeln/__init__.py @@ -2,4 +2,4 @@ from __future__ import annotations -__version__ = "0.0.38" +__version__ = "0.0.39"