File tree 4 files changed +32
-3
lines changed
4 files changed +32
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## [ v1.9.0] - 2024-09-15
4
+
5
+ ### Added
6
+ - Implemented Hugging Face (HF) upload functionality with GUI definitions
7
+ - Added RAM and CPU usage graphs to UI
8
+ - Input validation using wraps added to UI
9
+ - Right-click context menu added to the models list in UI
10
+ - Support for iMatrix generation tracking
11
+ - GGUF splitting feature added
12
+ - Japanese and German localizations updated
13
+
14
+ ### Changed
15
+ - Refactored to move functions out of ` AutoGGUF ` to reduce bloat
16
+ - Localized GGUF split strings
17
+ - Optimized GGUF imports and renamed related modules
18
+ - Removed old ` HFTransfer ` class
19
+ - Adjusted logging strings and updated French and Dutch localizations
20
+ - Improved startup time by optimizing default configuration, disabling network fetches for backends/updates
21
+ - Removed ` requests ` and ` python-dotenv ` to reduce size
22
+ - Updated ` fastapi ` requirement from ` ~=0.112.2 ` to ` ~=0.114.2 `
23
+ - Updated ` torch ` requirement from ` ~=2.4.0 ` to ` ~=2.4.1 `
24
+ - Updated ` setuptools ` requirement from ` ~=74.0.0 ` to ` ~=74.1.2 `
25
+ - Updated ` safetensors ` requirement from ` ~=0.4.4 ` to ` ~=0.4.5 `
26
+ - Updated ` huggingface-hub ` requirement from ` ~=0.24.6 ` to ` ~=0.24.7 `
27
+
28
+ ### Fixed
29
+ - Adjusted indeterminate progress bar behavior
30
+ - Removed comments in ` requirements.txt ` and updated its formatting
31
+
3
32
## [ v1.8.1] - 2024-09-04
4
33
5
34
### Added
Original file line number Diff line number Diff line change 4
4
5
5
| Version | Supported |
6
6
| -----------------| --------------------|
7
- | stable (v1.8.1 ) | :white_check_mark : |
7
+ | stable (v1.9.0 ) | :white_check_mark : |
8
8
9
9
Beta versions are not supported, and may have unknown security issues.
10
10
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ psutil~=6.0.0
3
3
pynvml ~= 11.5.3
4
4
PySide6 ~= 6.7.2
5
5
safetensors ~= 0.4.5
6
- numpy < 3 .0.0
6
+ numpy < 2 .0.0
7
7
torch ~= 2.4.1
8
8
sentencepiece ~= 0.2.0
9
9
setuptools ~= 74.1.2
Original file line number Diff line number Diff line change 5
5
6
6
setup (
7
7
name = "AutoGGUF" ,
8
- version = "v1.8.1 " ,
8
+ version = "v1.9.0 " ,
9
9
packages = ["" ],
10
10
url = "https://github.com/leafspark/AutoGGUF" ,
11
11
license = "apache-2.0" ,
You can’t perform that action at this time.
0 commit comments