From 3c4aeabdccb4c021ba1b1a5d7dc781ca10d3f86f Mon Sep 17 00:00:00 2001 From: "Daniel Plohmann (Saturn)" Date: Thu, 20 Jun 2024 15:47:55 +0200 Subject: [PATCH] bump 1.3.17 --- README.md | 1 + mcrit/config/McritConfig.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 29f62e9..b1d07ed 100644 --- a/README.md +++ b/README.md @@ -121,6 +121,7 @@ In July 2023, we started populating a [Github repository](https://github.com/dan ## Version History + * 2024-06-20 v1.3.17: Job deletion and cleanup are now [more robust](https://github.com/danielplohmann/mcrit/pull/77) and won't accidentally purge samples unwantedly - @yankovs - THX!! * 2024-05-10 v1.3.16: Queue cleanup has been extended to also purge files uploaded during all 3 types of queries (mapped, unmapped, smda). * 2024-04-17 v1.3.15: Worker type `spawningworker` will now terminate children after QueueConfig.QUEUE_SPAWNINGWORKER_CHILDREN_TIMEOUT seconds. * 2024-04-02 v1.3.14: Experimental: Introduction of new worker type `spawningworker` - this variant will consume jobs from the queue as usual but defer the actual job execution into a separate (sub)process, which should reduce issues with locked memory allocations. diff --git a/mcrit/config/McritConfig.py b/mcrit/config/McritConfig.py index 138ec8c..6094388 100644 --- a/mcrit/config/McritConfig.py +++ b/mcrit/config/McritConfig.py @@ -10,7 +10,7 @@ class McritConfig(object): # NOTE to self: always change this in setup.py as well! - VERSION = "1.3.16" + VERSION = "1.3.17" # basic pathing info CONFIG_FILE_PATH = str(os.path.abspath(__file__)) PROJECT_ROOT = str(os.path.abspath(os.sep.join([CONFIG_FILE_PATH, "..", ".."]))) diff --git a/setup.py b/setup.py index 803046f..ac09268 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name='mcrit', - version="1.3.16", + version="1.3.17", description='MCRIT is a framework created for simplified application of the MinHash algorithm to code similarity.', long_description_content_type="text/markdown", long_description=README,