From 56c9fd52d520d5e362a684518ab23316bd69f9ca Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk Date: Mon, 16 Sep 2024 09:10:01 -0600 Subject: [PATCH] constants.py: Set versioning to bug fix release --- CHANGELOG.md | 2 +- opencore_legacy_patcher/constants.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a7191ac29..3c0f86db9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # OpenCore Legacy Patcher changelog -## 2.1.0 +## 2.0.1 - Fix MacBookPro13,3 listing 'Available patches' after having installed all applicable patches - Fix Nvidia Tesla and Kepler patches not installing on Monterey (and older if applicable) - Fix Nvidia Web Drivers incorrectly listing 'OpenGL', 'compat' and 'nvda_drv(_vrl)' missing diff --git a/opencore_legacy_patcher/constants.py b/opencore_legacy_patcher/constants.py index 21425091d..45cdcb610 100644 --- a/opencore_legacy_patcher/constants.py +++ b/opencore_legacy_patcher/constants.py @@ -13,7 +13,7 @@ from .detections import device_probe class Constants: def __init__(self) -> None: # Patcher Versioning - self.patcher_version: str = "2.1.0" # OpenCore-Legacy-Patcher + self.patcher_version: str = "2.0.1" # OpenCore-Legacy-Patcher self.patcher_support_pkg_version: str = "1.8.0" # PatcherSupportPkg self.copyright_date: str = "Copyright © 2020-2024 Dortania" self.patcher_name: str = "OpenCore Legacy Patcher"