From 8a1b4c9cd4dce930043964b023c348a56c957883 Mon Sep 17 00:00:00 2001 From: Ian Mayo Date: Fri, 3 Jul 2020 12:46:30 +0100 Subject: [PATCH 1/3] =?UTF-8?q?Bump=20version:=200.0.18=20=E2=86=92=200.0.?= =?UTF-8?q?19?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pepys_import/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pepys_import/__init__.py b/pepys_import/__init__.py index 8cc48bc83..38ac17bcc 100644 --- a/pepys_import/__init__.py +++ b/pepys_import/__init__.py @@ -4,4 +4,4 @@ __author__ = "Ian Mayo" __email__ = "ian@planetmayo.com" -__version__ = "0.0.18" +__version__ = "__version__ = '0.0.19'" diff --git a/setup.cfg b/setup.cfg index 8c7ca1b6b..fd7b71751 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.18 +current_version = 0.0.19 commit = True tag = True diff --git a/setup.py b/setup.py index 5d37a320d..f5da9e564 100644 --- a/setup.py +++ b/setup.py @@ -43,6 +43,6 @@ test_suite="tests", tests_require=test_requirements, url="https://github.com/debrief/pepys-import", - version="0.0.18", + version="version='0.0.19'", zip_safe=False, ) From 635abf6be9e0e0b12ac7a7e60f401bb97336a27e Mon Sep 17 00:00:00 2001 From: Ian Mayo Date: Fri, 3 Jul 2020 12:47:15 +0100 Subject: [PATCH 2/3] Fix mangled versions --- pepys_import/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pepys_import/__init__.py b/pepys_import/__init__.py index 38ac17bcc..928dfca1d 100644 --- a/pepys_import/__init__.py +++ b/pepys_import/__init__.py @@ -4,4 +4,4 @@ __author__ = "Ian Mayo" __email__ = "ian@planetmayo.com" -__version__ = "__version__ = '0.0.19'" +__version__ = "0.0.19" diff --git a/setup.py b/setup.py index f5da9e564..cb8dd06df 100644 --- a/setup.py +++ b/setup.py @@ -43,6 +43,6 @@ test_suite="tests", tests_require=test_requirements, url="https://github.com/debrief/pepys-import", - version="version='0.0.19'", + version="0.0.19", zip_safe=False, ) From 9fcd413dcc574b76fc35ea97659bd2957e6c3661 Mon Sep 17 00:00:00 2001 From: Ian Mayo Date: Fri, 3 Jul 2020 12:49:04 +0100 Subject: [PATCH 3/3] Update history file --- HISTORY.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/HISTORY.rst b/HISTORY.rst index e6dc6dbe8..4d060f09f 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,14 @@ History ======= +0.0.19 (2020-07-03) +------------------- + +* Hotfix for trailing field in Nisida file +* Improve robustness of Import CSV +* Support CSV load of GeometrySubTypes +* Show path for archive folder location at end of import + 0.0.18 (2020-07-01) -------------------