From 577dd17dc8b83ece2510470c30fb83a16703b889 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 21 Nov 2023 15:44:31 +0000 Subject: [PATCH 1/3] ci(release): update to development version 1.4.0.dev0 --- docs/conf.py | 2 +- modflow_devtools/__init__.py | 2 +- version.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index aa50e63..b13c9f2 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.4.0.dev0" # -- 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..0399214 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.4.0.dev0" __maintainer__ = "Joseph D. Hughes" __email__ = "jdhughes@usgs.gov" __status__ = "Production" diff --git a/version.txt b/version.txt index 589268e..b58da95 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.3.0 \ No newline at end of file +1.4.0.dev0 \ No newline at end of file From ec3859af81e103f307586eec82e86cf63ee1e41c Mon Sep 17 00:00:00 2001 From: wpbonelli Date: Tue, 21 Nov 2023 10:59:37 -0500 Subject: [PATCH 2/3] refactor: re-export get_suffixes from executables module (#128) * don't break back-compatibility --- modflow_devtools/executables.py | 5 +++++ 1 file changed, 5 insertions(+) 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): """ From 7660aac3aa70336f9e53c781e49198f1d4c7ee0f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 21 Nov 2023 16:01:50 +0000 Subject: [PATCH 3/3] ci(release): set version to 1.3.1, update changelog --- HISTORY.md | 6 ++++++ docs/conf.py | 2 +- modflow_devtools/__init__.py | 2 +- version.txt | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) 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 b13c9f2..50b020a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -8,7 +8,7 @@ project = "modflow-devtools" author = "MODFLOW Team" -release = "1.4.0.dev0" +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 0399214..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.4.0.dev0" +__version__ = "1.3.1" __maintainer__ = "Joseph D. Hughes" __email__ = "jdhughes@usgs.gov" __status__ = "Production" diff --git a/version.txt b/version.txt index b58da95..6261a05 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.4.0.dev0 \ No newline at end of file +1.3.1 \ No newline at end of file