chg: [version] bump version to 1.4.4

pull/40/head v1.4.4
Christophe Vandeplas 2020-04-01 21:23:17 +02:00
parent 8512268542
commit ddb0ccab3c
2 changed files with 3 additions and 3 deletions

View File

@ -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',

View File

@ -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):