From dc6a45909776d4ee88f62add577ce0d39a409e96 Mon Sep 17 00:00:00 2001 From: w-bonelli Date: Fri, 30 Jun 2023 08:16:16 -0400 Subject: [PATCH] chore(version): update dev version to 3.4.2.dev0 --- CITATION.cff | 4 ++-- README.md | 4 ++-- code.json | 4 ++-- docs/PyPI_release.md | 2 +- flopy/version.py | 4 ++-- scripts/update_version.py | 2 +- version.txt | 2 +- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 2699a2891e..d32c914689 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -3,8 +3,8 @@ message: If you use this software, please cite both the article from preferred-c and the software itself. type: software title: FloPy -version: 3.dev4 -date-released: '2023-06-29' +version: 3.4.2.dev0 +date-released: '2023-06-30' doi: 10.5066/F7BK19FH abstract: A Python package to create, run, and post-process MODFLOW-based models. repository-artifact: https://pypi.org/project/flopy diff --git a/README.md b/README.md index 5c79c5fa2a..233177e147 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ flopy3 -### Version 3.dev4 (preliminary) +### Version 3.4.2.dev0 (preliminary) [![flopy continuous integration](https://github.com/modflowpy/flopy/actions/workflows/commit.yml/badge.svg?branch=develop)](https://github.com/modflowpy/flopy/actions/workflows/commit.yml) [![Read the Docs](https://github.com/modflowpy/flopy/actions/workflows/rtd.yml/badge.svg?branch=develop)](https://github.com/modflowpy/flopy/actions/workflows/rtd.yml) @@ -142,7 +142,7 @@ How to Cite ##### ***Software/Code citation for FloPy:*** -[Bakker, Mark, Post, Vincent, Hughes, J. D., Langevin, C. D., White, J. T., Leaf, A. T., Paulinski, S. R., Bellino, J. C., Morway, E. D., Toews, M. W., Larsen, J. D., Fienen, M. N., Starn, J. J., Brakenhoff, D. A., and Bonelli, W. P., 2023, FloPy v3.dev4 (preliminary): U.S. Geological Survey Software Release, 29 June 2023, https://doi.org/10.5066/F7BK19FH](https://doi.org/10.5066/F7BK19FH) +[Bakker, Mark, Post, Vincent, Hughes, J. D., Langevin, C. D., White, J. T., Leaf, A. T., Paulinski, S. R., Bellino, J. C., Morway, E. D., Toews, M. W., Larsen, J. D., Fienen, M. N., Starn, J. J., Brakenhoff, D. A., and Bonelli, W. P., 2023, FloPy v3.4.2.dev0 (preliminary): U.S. Geological Survey Software Release, 30 June 2023, https://doi.org/10.5066/F7BK19FH](https://doi.org/10.5066/F7BK19FH) Additional FloPy Related Publications diff --git a/code.json b/code.json index 94f89d2786..ca24c1e542 100644 --- a/code.json +++ b/code.json @@ -29,9 +29,9 @@ "downloadURL": "https://code.usgs.gov/usgs/modflow/flopy/archive/master.zip", "vcs": "git", "laborHours": -1, - "version": "3.dev4", + "version": "3.4.2.dev0", "date": { - "metadataLastUpdated": "2023-06-29" + "metadataLastUpdated": "2023-06-30" }, "organization": "U.S. Geological Survey", "permissions": { diff --git a/docs/PyPI_release.md b/docs/PyPI_release.md index 7a59879422..9ea6c3264e 100644 --- a/docs/PyPI_release.md +++ b/docs/PyPI_release.md @@ -30,7 +30,7 @@ How to Cite *Software/Code citation for FloPy:* -[Bakker, Mark, Post, Vincent, Hughes, J. D., Langevin, C. D., White, J. T., Leaf, A. T., Paulinski, S. R., Bellino, J. C., Morway, E. D., Toews, M. W., Larsen, J. D., Fienen, M. N., Starn, J. J., Brakenhoff, D. A., and Bonelli, W. P., 2023, FloPy v3.dev4 (preliminary): U.S. Geological Survey Software Release, 29 June 2023, https://doi.org/10.5066/F7BK19FH](https://doi.org/10.5066/F7BK19FH) +[Bakker, Mark, Post, Vincent, Hughes, J. D., Langevin, C. D., White, J. T., Leaf, A. T., Paulinski, S. R., Bellino, J. C., Morway, E. D., Toews, M. W., Larsen, J. D., Fienen, M. N., Starn, J. J., Brakenhoff, D. A., and Bonelli, W. P., 2023, FloPy v3.4.2.dev0 (preliminary): U.S. Geological Survey Software Release, 30 June 2023, https://doi.org/10.5066/F7BK19FH](https://doi.org/10.5066/F7BK19FH) Disclaimer diff --git a/flopy/version.py b/flopy/version.py index 7bc53ac2a9..23af23a369 100644 --- a/flopy/version.py +++ b/flopy/version.py @@ -1,3 +1,3 @@ -# flopy version file automatically created using update_version.py on June 29, 2023 10:56:39 +# flopy version file automatically created using update_version.py on June 30, 2023 08:29:09 -__version__ = "3.dev4" +__version__ = "3.4.2.dev0" diff --git a/scripts/update_version.py b/scripts/update_version.py index 8a1e11335a..c7ecdd369a 100644 --- a/scripts/update_version.py +++ b/scripts/update_version.py @@ -80,7 +80,7 @@ def update_version_py(timestamp: datetime, version: Version): f"# {_project_name} version file automatically created using " f"{Path(__file__).name} on {timestamp:%B %d, %Y %H:%M:%S}\n\n" ) - f.write(f"__version__ = '{version}'\n") + f.write(f'__version__ = "{version}"\n') f.close() print(f"Updated {_version_py_path} to version {version}") diff --git a/version.txt b/version.txt index 93a1d0ad48..7387b31eaa 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -3.dev4 \ No newline at end of file +3.4.2.dev0 \ No newline at end of file