diff --git a/CHANGELOG.md b/CHANGELOG.md index ab5b5b4..703eab0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Changelog All notable changes to this project will be documented in this file. +## [0.8.2] - 2024-09-04 +- **Hotfix**: More fixes for windows. + ## [0.8.2] - 2024-09-04 - **Hotfix**: Fixed safe_get import. - diff --git a/civitai_models_manager/__version__.py b/civitai_models_manager/__version__.py index deded32..732155f 100644 --- a/civitai_models_manager/__version__.py +++ b/civitai_models_manager/__version__.py @@ -1 +1 @@ -__version__ = "0.8.2" +__version__ = "0.8.3" diff --git a/civitai_models_manager/modules/download.py b/civitai_models_manager/modules/download.py index 4d5610d..80b9e14 100644 --- a/civitai_models_manager/modules/download.py +++ b/civitai_models_manager/modules/download.py @@ -3,6 +3,7 @@ import shutil import tempfile import typer +import time from typing import Any, List, Dict, Optional, Tuple from tqdm import tqdm from rich.console import Console