Skip to content

Commit 4836fab

Browse files
committed
Bump version to 1.4.1
1 parent 2b155af commit 4836fab

3 files changed

Lines changed: 14 additions & 2 deletions

File tree

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [1.4.1] - 2024-12-24
11+
12+
### Fixed
13+
- **Verbose Payload Logging Level** - Changed from INFO to DEBUG level
14+
- All verbose payload logging now uses `logger.debug()` instead of `logger.info()`
15+
- Keeps standard logs clean while preserving diagnostic capabilities
16+
- Users can enable verbose logging by setting logger level to DEBUG
17+
- Prevents log clutter in production environments
18+
19+
### Technical Details
20+
The verbose payload logging introduced in v1.4.0 was initially set to INFO level, which could clutter standard logs with detailed diagnostic information. This hotfix moves all payload logging to DEBUG level, following standard logging practices where detailed diagnostic information belongs at DEBUG level. To enable verbose payload logging, set the logger level to DEBUG before initializing the chat loop.
21+
1022
## [1.4.0] - 2024-12-24
1123

1224
### Added

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "basic-agent-chat-loop"
7-
version = "1.4.0"
7+
version = "1.4.1"
88
description = "Feature-rich interactive CLI for AI agents with token tracking, prompt templates, aliases, and configuration"
99
readme = "README.md"
1010
requires-python = ">=3.9"

src/basic_agent_chat_loop/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
agent aliases, and extensive configuration options.
55
"""
66

7-
__version__ = "1.4.0"
7+
__version__ = "1.4.1"
88

99
from .chat_config import ChatConfig
1010
from .chat_loop import ChatLoop

0 commit comments

Comments
 (0)