Skip to content

Commit 2e9adad

Browse files
authored
Merge pull request #129 from MODFLOW-USGS/v1.3.1
Release 1.3.1
2 parents 5d5d740 + 7660aac commit 2e9adad

5 files changed

Lines changed: 14 additions & 3 deletions

File tree

HISTORY.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### Version 1.3.1
2+
3+
#### Refactoring
4+
5+
* [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.
6+
17
### Version 1.3.0
28

39
#### New features

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
project = "modflow-devtools"
1010
author = "MODFLOW Team"
11-
release = "1.3.0"
11+
release = "1.3.1"
1212

1313
# -- General configuration ---------------------------------------------------
1414
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

modflow_devtools/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__author__ = "Joseph D. Hughes"
22
__date__ = "Nov 21, 2023"
3-
__version__ = "1.3.0"
3+
__version__ = "1.3.1"
44
__maintainer__ = "Joseph D. Hughes"
55
__email__ = "jdhughes@usgs.gov"
66
__status__ = "Production"

modflow_devtools/executables.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
from types import SimpleNamespace
33
from typing import Dict
44

5+
from modflow_devtools.misc import get_suffixes
6+
7+
# re-export for backwards-compatibility (used to be here)
8+
get_suffixes = get_suffixes
9+
510

611
class Executables(SimpleNamespace):
712
"""

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.0
1+
1.3.1

0 commit comments

Comments
 (0)