diff --git a/HISTORY.md b/HISTORY.md index b399612..c81ad74 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,7 +1,7 @@ # History -## 1.5.2 (2020-06-24) -- Patch release. +## 1.6.0 (2020-06-24) +- Add environment variable `GSFPY_LIBGSF_PATH` to enable swapping out libgsf at runtime ## 1.5.1 (2020-06-16) - First automated release on PyPI. diff --git a/gsfpy/__init__.py b/gsfpy/__init__.py index 5fc7014..da4dc1e 100644 --- a/gsfpy/__init__.py +++ b/gsfpy/__init__.py @@ -1,6 +1,6 @@ __author__ = """UK Hydrographic Office""" __email__ = "datascienceandengineering@ukho.gov.uk" -__version__ = "1.5.2" +__version__ = "1.6.0" from ctypes import byref, c_int from os import fsencode diff --git a/pyproject.toml b/pyproject.toml index e4ae6ae..37a1b3e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gsfpy" -version = "1.5.2" +version = "1.6.0" authors = [ "UK Hydrographic Office " ]