Skip to content

Commit 288a21e

Browse files
committed
chore(release): bump version to 0.11.2
1 parent e6b4f91 commit 288a21e

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
All notable changes to LocalLab will be documented in this file.
44

5+
## [0.11.2] - 2025-07-23
6+
7+
### Enhanced
8+
- **CLI chat interface redesign** - Modern minimal aesthetic with ASCII banner, professional color scheme, and enhanced visual hierarchy
9+
- **Response generation reliability** - 3-retry logic with auto-reconnection, comprehensive format support, and special token cleaning
10+
- **Chat interface improvements** - Removed verbose startup info, optimized spacing, minimal shutdown messages, and horizontal padding
11+
- **ASCII art banner** - Complete "LOCALLAB" display with clean bottom-line design and balanced color brightness
12+
- **Visual distinction** - Enhanced user/AI message contrast with subdued AI response colors for better readability
13+
14+
### Fixed
15+
- **Response parsing failures** - Robust handling of 120+ second generation times, Chinese text, and conversation end markers
16+
- **Connection recovery** - Automatic reconnection between retry attempts with exponential backoff delays
17+
- **Import error** - Added missing `Group` import in `locallab/cli/ui.py` for proper Rich component rendering
18+
19+
### Technical Changes
20+
- Updated `locallab/cli/ui.py`, `locallab/cli/chat.py`, `locallab/cli/connection.py`
21+
- Enhanced error handling with comprehensive debug logging and response validation
22+
523
## [0.11.1] - 2025-07-08
624

725
### Fixed

locallab/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# This ensures Hugging Face's progress bars are displayed correctly
77
from .utils.early_config import configure_hf_logging
88

9-
__version__ = "0.11.1" # Fixed download command warnings and improved error handling
9+
__version__ = "0.11.2" # Enhanced CLI chat interface with modern design and improved reliability
1010

1111
# Only import what's necessary initially, lazy-load the rest
1212
from .logger import get_logger

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747

4848
setup(
4949
name="locallab",
50-
version="0.11.1",
50+
version="0.11.2",
5151
packages=find_packages(include=["locallab", "locallab.*"]),
5252
install_requires=install_requires,
5353
extras_require={

0 commit comments

Comments
 (0)