From 45b10bdcbb2032b3924a19fd12d188011dd91a7e Mon Sep 17 00:00:00 2001 From: BuildTools Date: Sun, 15 Sep 2024 13:08:26 -0700 Subject: [PATCH] chore: bump version to v1.9.0 --- CHANGELOG.md | 29 +++++++++++++++++++++++++++++ SECURITY.md | 2 +- requirements.txt | 2 +- setup.py | 2 +- 4 files changed, 32 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f4c5a0..edf0f17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,34 @@ # Changelog +## [v1.9.0] - 2024-09-15 + +### Added +- Implemented Hugging Face (HF) upload functionality with GUI definitions +- Added RAM and CPU usage graphs to UI +- Input validation using wraps added to UI +- Right-click context menu added to the models list in UI +- Support for iMatrix generation tracking +- GGUF splitting feature added +- Japanese and German localizations updated + +### Changed +- Refactored to move functions out of `AutoGGUF` to reduce bloat +- Localized GGUF split strings +- Optimized GGUF imports and renamed related modules +- Removed old `HFTransfer` class +- Adjusted logging strings and updated French and Dutch localizations +- Improved startup time by optimizing default configuration, disabling network fetches for backends/updates +- Removed `requests` and `python-dotenv` to reduce size +- Updated `fastapi` requirement from `~=0.112.2` to `~=0.114.2` +- Updated `torch` requirement from `~=2.4.0` to `~=2.4.1` +- Updated `setuptools` requirement from `~=74.0.0` to `~=74.1.2` +- Updated `safetensors` requirement from `~=0.4.4` to `~=0.4.5` +- Updated `huggingface-hub` requirement from `~=0.24.6` to `~=0.24.7` + +### Fixed +- Adjusted indeterminate progress bar behavior +- Removed comments in `requirements.txt` and updated its formatting + ## [v1.8.1] - 2024-09-04 ### Added diff --git a/SECURITY.md b/SECURITY.md index 6d519c3..967bb90 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -4,7 +4,7 @@ ## Supported Versions | Version | Supported | |-----------------|--------------------| -| stable (v1.8.1) | :white_check_mark: | +| stable (v1.9.0) | :white_check_mark: | Beta versions are not supported, and may have unknown security issues. diff --git a/requirements.txt b/requirements.txt index db2e603..d3100fd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,7 +3,7 @@ psutil~=6.0.0 pynvml~=11.5.3 PySide6~=6.7.2 safetensors~=0.4.5 -numpy<3.0.0 +numpy<2.0.0 torch~=2.4.1 sentencepiece~=0.2.0 setuptools~=74.1.2 diff --git a/setup.py b/setup.py index c3a20ea..e4d3f62 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="AutoGGUF", - version="v1.8.1", + version="v1.9.0", packages=[""], url="https://github.com/leafspark/AutoGGUF", license="apache-2.0",