From ddb0ccab3ca0713621b66380a349719e07e11945 Mon Sep 17 00:00:00 2001 From: Christophe Vandeplas Date: Wed, 1 Apr 2020 21:23:17 +0200 Subject: [PATCH] chg: [version] bump version to 1.4.4 --- setup.py | 2 +- src/MISP_maltego/transforms/common/util.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 4324977..d5c7355 100755 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name='MISP_maltego', author='Christophe Vandeplas', # also update version in util.py - version='1.4.3', + version='1.4.4', author_email='christophe@vandeplas.com', maintainer='Christophe Vandeplas', url='https://github.com/MISP/MISP-maltego', diff --git a/src/MISP_maltego/transforms/common/util.py b/src/MISP_maltego/transforms/common/util.py index e5ec603..14cc7f2 100644 --- a/src/MISP_maltego/transforms/common/util.py +++ b/src/MISP_maltego/transforms/common/util.py @@ -14,7 +14,7 @@ import time # FIXME from galaxy 'to MISP Event' is confusing -__version__ = '1.4.3' # also update version in setup.py +__version__ = '1.4.4' # also update version in setup.py tag_note_prefixes = ['tlp:', 'PAP:', 'de-vs:', 'euci:', 'fr-classif:', 'nato:'] @@ -405,7 +405,7 @@ def galaxy_update_local_copy(force=False): force = True if force: - # FIXME create a lock to prevent two processes doing the same, and writing to the file at the same time + # create a lock to prevent two processes doing the same, and writing to the file at the same time lockfile = local_path_uuid_mapping + '.lock' from pathlib import Path while os.path.exists(lockfile):