Skip to content

Commit 3408301

Browse files
committed
Update Package Version
1 parent 589ff64 commit 3408301

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

CHANGELOG.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

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

5+
## [0.6.5] - 2025-05-16
6+
7+
### Fixed
8+
9+
- Fixed critical error with Hugging Face progress bars display
10+
- Corrected function naming and imports for better compatibility
11+
- Improved early configuration system to properly set up logging
12+
- Enhanced error handling during model downloads
13+
- Fixed AttributeError with huggingface_hub module
14+
515
## [0.6.4] - 2025-05-16
616

717
### Improved
@@ -16,16 +26,6 @@ All notable changes to LocalLab will be documented in this file.
1626
- Added informative messages before and after model downloads for better user experience
1727
- Ensured consistent progress bar display across different model types and sizes
1828

19-
## [0.6.4] - 2025-05-16
20-
21-
### Fixed
22-
23-
- Fixed critical error with Hugging Face progress bars display
24-
- Corrected function naming and imports for better compatibility
25-
- Improved early configuration system to properly set up logging
26-
- Enhanced error handling during model downloads
27-
- Fixed AttributeError with huggingface_hub module
28-
2929
## [0.6.3] - 2025-05-16
3030

3131
### Improved

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.6.4" # Fixed Hugging Face progress bars display and improved model downloading experience
9+
__version__ = "0.6.5" # Fixed Hugging Face progress bars display and improved model downloading experience
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.6.4",
50+
version="0.6.5",
5151
packages=find_packages(include=["locallab", "locallab.*"]),
5252
install_requires=install_requires,
5353
extras_require={

0 commit comments

Comments
 (0)