diff --git a/HISTORY.md b/HISTORY.md index 51bb447..6763a5d 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,9 @@ +### Version 0.2.0 + +#### New features + +* [feat(set_env)](https://github.com/MODFLOW-USGS/modflow-devtools/commit/53b31cce34d221bade4c842efe3b5ed3034b2742): Add set_env contextmanager utility (#87). Committed by w-bonelli on 2023-07-26. + ### Version 0.1.8 #### New features diff --git a/docs/conf.py b/docs/conf.py index 60a42bc..ffe3e28 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -8,7 +8,7 @@ project = "modflow-devtools" author = "MODFLOW Team" -release = '0.2.0.dev0' +release = "0.3.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 4e9536a..112d37f 100644 --- a/modflow_devtools/__init__.py +++ b/modflow_devtools/__init__.py @@ -1,6 +1,6 @@ __author__ = "Joseph D. Hughes" __date__ = "Jul 26, 2023" -__version__ = "0.2.0.dev0" +__version__ = "0.3.0.dev0" __maintainer__ = "Joseph D. Hughes" __email__ = "jdhughes@usgs.gov" __status__ = "Production" diff --git a/scripts/update_version.py b/scripts/update_version.py index 8a5abc7..32878b9 100644 --- a/scripts/update_version.py +++ b/scripts/update_version.py @@ -25,9 +25,7 @@ def update_version_txt(version: Version): print(f"Updated {_version_txt_path} to version {version}") -def update_init_py( - timestamp: datetime, version: Version -): +def update_init_py(timestamp: datetime, version: Version): lines = _package_init_path.read_text().rstrip().split("\n") with open(_package_init_path, "w") as f: for line in lines: @@ -39,9 +37,7 @@ def update_init_py( print(f"Updated {_package_init_path} to version {version}") -def update_docs_config( - timestamp: datetime, version: Version -): +def update_docs_config(timestamp: datetime, version: Version): lines = _docs_config_path.read_text().rstrip().split("\n") with open(_docs_config_path, "w") as f: for line in lines: diff --git a/version.txt b/version.txt index 9a058eb..2934a2f 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.2.0.dev0 \ No newline at end of file +0.3.0.dev0 \ No newline at end of file