From e4a20c4f5cf29a68083c2e559a94d22a0d0037e9 Mon Sep 17 00:00:00 2001 From: jremitz Date: Fri, 24 Apr 2026 07:47:46 -0500 Subject: [PATCH] =?UTF-8?q?release:=20v0.0.39=20=E2=80=94=20reeln=20init,?= =?UTF-8?q?=20uv=20detection=20fix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude --- CHANGELOG.md | 9 +++++++++ reeln/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) 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"