From c486930c95276c8eaf3711e66f2b81b791ddcbff Mon Sep 17 00:00:00 2001 From: jernejaMislej Date: Mon, 10 Dec 2018 21:13:42 +0100 Subject: [PATCH] add: release 0.3.1 --- CHANGELOG.MD | 4 ++++ mapillary_tools/commands/__init__.py | 2 +- mapillary_tools/process_import_meta_properties.py | 6 +++--- setup.py | 2 +- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.MD b/CHANGELOG.MD index f9f1b08e..5aecb7d9 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -98,3 +98,7 @@ * Argument `--video_file` was renamed to `--video_import_path` as directories of one or more videos can now be processed and uploaded. Note that even if one video is to be processed and uploaded, the directory of the video should be specified as the video import path and not the video file itself. * Only the Image Description EXIF tag is overwritten with the mapillary image description which includes all the data obtained during the `process` command. If one would like the rest of the tags to be overwritten, an additional argument needs to be passed under advanced usage. Single specific tags can also be overwritten by additional specific corresponding arguments. +## 0.3.1 (2018-12-10) + +### Features and improvements +* mapillary_tools available to be downloaded and installed as a package \ No newline at end of file diff --git a/mapillary_tools/commands/__init__.py b/mapillary_tools/commands/__init__.py index 9111bf24..94a40e17 100644 --- a/mapillary_tools/commands/__init__.py +++ b/mapillary_tools/commands/__init__.py @@ -39,7 +39,7 @@ process_and_upload ] -VERSION = "0.3.0" +VERSION = "0.3.1" def add_general_arguments(parser, command): diff --git a/mapillary_tools/process_import_meta_properties.py b/mapillary_tools/process_import_meta_properties.py index d09f6533..82e5bcba 100644 --- a/mapillary_tools/process_import_meta_properties.py +++ b/mapillary_tools/process_import_meta_properties.py @@ -104,7 +104,7 @@ def finalize_import_properties_process(image, add_meta_tag(mapillary_description, "strings", "mapillary_tools_version", - "0.3.0") + "0.3.1") if custom_meta_data: parse_and_add_custom_meta_tags(mapillary_description, @@ -170,7 +170,7 @@ def process_import_meta_properties(import_path, # sanity check if video file is passed if video_import_path and not os.path.isdir(video_import_path): print_error("Error, video path " + video_import_path + - " does not exist, exiting...") + " does not exist, exiting...") sys.exit(1) # in case of video processing, adjust the import path @@ -183,7 +183,7 @@ def process_import_meta_properties(import_path, # basic check for all if not import_path or not os.path.isdir(import_path): print_error("Error, import directory " + import_path + - " does not exist, exiting...") + " does not exist, exiting...") sys.exit(1) # get list of file to process diff --git a/setup.py b/setup.py index a55c8c5a..2139fb15 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup(name='mapillary_tools', - version='0.3.0', + version='0.3.1', description='Mapillary Image/Video Import Pipeline', url='https://github.com/mapillary/mapillary_tools', author='Mapillary',