Skip to content

Commit a93beb9

Browse files
committed
Updated package v4.11 and updated Docs
1 parent e01d9fb commit a93beb9

File tree

7 files changed

+260
-183
lines changed

7 files changed

+260
-183
lines changed

CHANGELOG.md

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

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

5+
## 0.4.11 - 2025-03-11
6+
7+
### Fixed
8+
9+
- Fixed critical issue with `locallab start` failing due to uvicorn lifespan module errors
10+
- Fixed `locallab config` command not properly prompting for new settings when reconfiguring
11+
- Significantly improved CLI startup speed with optimized imports and conditional loading
12+
- Enhanced configuration system to include all available options (cache, logging, etc.)
13+
- Improved compatibility with different Python versions and environments
14+
- Added better error handling for ngrok authentication token
15+
- Fixed event loop handling for both local and Google Colab environments
16+
- Removed "What's New" sections from documentation in favor of directing users to the changelog
17+
- Restored option to skip advanced configuration settings for better user experience
18+
19+
## 0.4.10 - 2025-03-11
20+
21+
### Fixed
22+
23+
- Fixed critical issue with `locallab start` failing due to uvicorn lifespan module errors
24+
- Fixed `locallab config` command not properly prompting for new settings when reconfiguring
25+
- Significantly improved CLI startup speed with optimized imports and conditional loading
26+
- Enhanced configuration system to include all available options (cache, logging, etc.)
27+
- Improved compatibility with different Python versions and environments
28+
- Added better error handling for ngrok authentication token
29+
- Fixed event loop handling for both local and Google Colab environments
30+
- Removed "What's New" sections from documentation in favor of directing users to the changelog
31+
532
## 0.4.9 - 2025-03-11
633

734
### Fixed

README.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,7 @@
77

88
LocalLab empowers users to run any Hugging Face AI model locally or on Google Colab with minimal setup required. It automatically configures an API using ngrok, enabling seamless integration into applications from any location. Designed for simplicity, LocalLab makes advanced AI accessible to all, regardless of technical expertise. With built-in model management, performance optimizations, and system monitoring, it ensures efficient and reliable AI operations for developers, researchers, and enthusiasts alike.
99

10-
## What's New in v0.4.9
11-
12-
- **🔧 Fixed Configuration System**: The `locallab config` command now properly saves settings that are respected when running `locallab start`
13-
- **📋 Configuration Display**: The CLI now shows your current configuration before prompting for changes
14-
- **⏩ Skip Unnecessary Prompts**: Only prompts for settings that aren't already configured
15-
- **✅ Clear Feedback**: After saving configuration, the CLI shows what was saved and how to use it
10+
> **Note**: For the latest changes and updates, please see the [CHANGELOG.md](./CHANGELOG.md) file.
1611
1712
## What Problem Does LocalLab Solve?
1813

docs/README.md

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -6,28 +6,7 @@ Welcome to the LocalLab documentation! This guide is your one-stop resource for
66

77
LocalLab empowers you to run AI inference servers either locally or through Google Colab. With advanced model management, performance optimizations, and robust system monitoring, LocalLab is built to deliver efficient, on-demand AI capabilities.
88

9-
## What's New in v0.4.9
10-
11-
Our latest release brings significant improvements to the configuration system:
12-
13-
- **🔧 Fixed Configuration Persistence**: The `locallab config` command now properly saves settings that are respected when running `locallab start`
14-
- **📋 Configuration Display**: The CLI now shows your current configuration before prompting for changes
15-
- **⏩ Skip Unnecessary Prompts**: Only prompts for settings that aren't already configured
16-
- **✅ Clear Feedback**: After saving configuration, the CLI shows what was saved and how to use it
17-
18-
[Read the full changelog](../CHANGELOG.md) for more details.
19-
20-
## What's New in v0.4.8
21-
22-
Our previous release brought significant improvements to the LocalLab CLI:
23-
24-
- **⚡ Lightning-Fast Startup**: Optimized for quick response time with lazy loading
25-
- **🛡️ Robust Error Handling**: Better diagnostics and recovery from common issues
26-
- **🔄 Unified Configuration**: Seamless integration between CLI options and environment variables
27-
- **📊 Enhanced System Information**: Improved hardware reporting with the `locallab info` command
28-
- **🔧 Fixed Critical Issues**: Resolved server startup errors and configuration conflicts
29-
30-
[Read the full changelog](../CHANGELOG.md) for more details.
9+
> **Note**: For the latest changes and updates, please see the [CHANGELOG.md](../CHANGELOG.md) file.
3110
3211
## Visual Overview
3312

locallab/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
LocalLab - A lightweight AI inference server for running LLMs locally
33
"""
44

5-
__version__ = "0.4.9"
5+
__version__ = "0.4.11"
66

77
# Only import what's needed for basic functionality
88
# Other imports will be lazy-loaded when needed

0 commit comments

Comments
 (0)