Skip to content

Commit

Permalink
New release
Browse files Browse the repository at this point in the history
  • Loading branch information
Dramelac committed Dec 17, 2024
1 parent f687897 commit 25b1554
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion exegol/config/ConstantConfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
class ConstantConfig:
"""Constant parameters information"""
# Exegol Version
version: str = "4.3.9b1"
version: str = "4.3.9"

# Exegol documentation link
documentation: str = "https://exegol.rtfd.io/"
Expand Down
1 change: 1 addition & 0 deletions exegol/config/EnvInfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@ def getDockerDesktopSettings(cls) -> Dict:
return {}
file_path = config_file[0]
if file_path is None:
assert dir_path is not None
# Try to find settings file with new filename or fallback to legacy filename for Docker Desktop older than 4.34
file_path = (dir_path / "settings-store.json") if (dir_path / "settings-store.json").is_file() else (dir_path / "settings.json")
logger.debug(f"Loading Docker Desktop config from {file_path}")
Expand Down

0 comments on commit 25b1554

Please sign in to comment.