diff --git a/HISTORY.md b/HISTORY.md index de0e5cb..9cd4f2c 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,9 @@ +### Version 1.3.1 + +#### Refactoring + +* [refactor](https://github.com/MODFLOW-USGS/modflow-devtools/commit/ec3859af81e103f307586eec82e86cf63ee1e41c): Re-export get_suffixes from executables module (#128). Committed by wpbonelli on 2023-11-21. + ### Version 1.3.0 #### New features diff --git a/docs/conf.py b/docs/conf.py index aa50e63..50b020a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -8,7 +8,7 @@ project = "modflow-devtools" author = "MODFLOW Team" -release = "1.3.0" +release = "1.3.1" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/modflow_devtools/__init__.py b/modflow_devtools/__init__.py index be89f8f..a082e8c 100644 --- a/modflow_devtools/__init__.py +++ b/modflow_devtools/__init__.py @@ -1,6 +1,6 @@ __author__ = "Joseph D. Hughes" __date__ = "Nov 21, 2023" -__version__ = "1.3.0" +__version__ = "1.3.1" __maintainer__ = "Joseph D. Hughes" __email__ = "jdhughes@usgs.gov" __status__ = "Production" diff --git a/modflow_devtools/executables.py b/modflow_devtools/executables.py index 0c9705e..9e34149 100644 --- a/modflow_devtools/executables.py +++ b/modflow_devtools/executables.py @@ -2,6 +2,11 @@ from types import SimpleNamespace from typing import Dict +from modflow_devtools.misc import get_suffixes + +# re-export for backwards-compatibility (used to be here) +get_suffixes = get_suffixes + class Executables(SimpleNamespace): """ diff --git a/version.txt b/version.txt index 589268e..6261a05 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.3.0 \ No newline at end of file +1.3.1 \ No newline at end of file