From 304de18cdb47b4bd64ed9f61b9f08d411023d807 Mon Sep 17 00:00:00 2001 From: Vignesh Rao Date: Fri, 4 Oct 2024 21:02:31 -0500 Subject: [PATCH] Release `v6.0.0` --- jarvis/__init__.py | 3 +-- release_notes.rst | 10 ++++++++++ 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/jarvis/__init__.py b/jarvis/__init__.py index bc108fd3..3e5be6a5 100644 --- a/jarvis/__init__.py +++ b/jarvis/__init__.py @@ -3,10 +3,9 @@ from multiprocessing import current_process from typing import Callable -version = "5.1.0" +version = "6.0.0" -# todo: gather and join all processes that are triggered def __preflight_check__() -> Callable: """Startup validator that imports Jarvis' main module to validate all dependencies' installation status. diff --git a/release_notes.rst b/release_notes.rst index 8448fbc1..58679232 100644 --- a/release_notes.rst +++ b/release_notes.rst @@ -1,6 +1,16 @@ Release Notes ============= +v6.0.0 (10/04/2024) +------------------- +- Includes support for ARM based macOS machines +- Removed support for legacy macOS machines (older than High Sierra) +- Restructured installation process +- Includes a resource tracker to terminate all uncaught daemon processes +- Makes ``root_password`` optional for Linux machines +- Includes bug fixes and minor improvements to overall coding structure +- Improved container orchestration using Docker API and email templates + v5.1.0 (06/09/2024) ------------------- - Includes fully operational CLI functionalities.