Skip to content

Commit b54aad2

Browse files
committed
chore(release): 0.7.2
1 parent 34bfb42 commit b54aad2

File tree

5 files changed

+27
-4
lines changed

5 files changed

+27
-4
lines changed

.semver

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.7.1
1+
0.7.2

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,29 @@ All notable changes to **ralphy-looper** will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/), and this project adheres to [Semantic Versioning](https://semver.org/).
66

7+
## [0.7.2](https://github.com/joserprieto/ralphy-looper/compare/v0.7.1...v0.7.2) (2026-02-10)
8+
9+
### Bug Fixes
10+
11+
* **backend:** catch `ConnectionError` on `stdin.drain()` for fast-exiting subprocesses — fixes flaky
12+
`test_phase_complete_advances_phase` on py3.11 CI ([bec1025](https://github.com/joserprieto/ralphy-looper/commit/bec1025))
13+
* **release:** Makefile release targets now use `poetry run git commit` instead of letting
14+
`commit-and-tag-version` call `git commit` directly, which failed because pre-commit hooks
15+
live in `.venv/bin/` ([21bce3b](https://github.com/joserprieto/ralphy-looper/commit/21bce3b))
16+
17+
### Dependencies
18+
19+
* **rich** 13.9.4 → 14.3.2
20+
* **pytest-asyncio** 0.24.0 → 1.3.0
21+
* **pre-commit** 3.8.0 → 4.5.1
22+
* **deptry** 0.22.0 → 0.24.0
23+
* **typer** 0.21.1 → 0.21.2
24+
* **actions/cache** v4 → v5
25+
* **actions/checkout** v4 → v6
26+
* **actions/upload-artifact** v4 → v6
27+
* **actions/setup-python** v5 → v6
28+
* **markdownlint-cli2-action** v19 → v22
29+
730
## [0.7.1](https://github.com/joserprieto/ralphy-looper/compare/v0.7.0...v0.7.1) (2026-02-10)
831

932
## [0.7.0](https://github.com/joserprieto/ralphy-looper/compare/v0.6.0...v0.7.0) (2026-02-10)

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ SHELL := /bin/bash
1212

1313
# Project metadata
1414
PROJECT_NAME := Ralphy Looper
15-
VERSION := 0.7.1
15+
VERSION := 0.7.2
1616

1717
# Tool configuration
1818
POETRY ?= poetry

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "ralphy-looper"
3-
version = "0.7.1"
3+
version = "0.7.2"
44
description = "AI coding assistant loop orchestrator"
55
authors = ["Jose R. Prieto <hi@joserprieto.es>"]
66
license = "MIT"

ralph/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
"Orchestrator",
2222
]
2323

24-
__version__ = "0.7.1"
24+
__version__ = "0.7.2"

0 commit comments

Comments
 (0)