Skip to content

Commit 6475074

Browse files
authored
chore(version): update dev version to 3.4.2.dev0 (#1861)
1 parent a644b52 commit 6475074

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ message: If you use this software, please cite both the article from preferred-c
33
and the software itself.
44
type: software
55
title: FloPy
6-
version: 3.dev4
7-
date-released: '2023-06-29'
6+
version: 3.4.2.dev0
7+
date-released: '2023-06-30'
88
doi: 10.5066/F7BK19FH
99
abstract: A Python package to create, run, and post-process MODFLOW-based models.
1010
repository-artifact: https://pypi.org/project/flopy

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
<img src="https://raw.githubusercontent.com/modflowpy/flopy/master/examples/images/flopy3.png" alt="flopy3" style="width:50;height:20">
33

4-
### Version 3.dev4 (preliminary)
4+
### Version 3.4.2.dev0 (preliminary)
55
[![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)
66
[![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)
77

@@ -142,7 +142,7 @@ How to Cite
142142

143143
##### ***Software/Code citation for FloPy:***
144144

145-
[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)
145+
[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)
146146

147147

148148
Additional FloPy Related Publications

code.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
"downloadURL": "https://code.usgs.gov/usgs/modflow/flopy/archive/master.zip",
3030
"vcs": "git",
3131
"laborHours": -1,
32-
"version": "3.dev4",
32+
"version": "3.4.2.dev0",
3333
"date": {
34-
"metadataLastUpdated": "2023-06-29"
34+
"metadataLastUpdated": "2023-06-30"
3535
},
3636
"organization": "U.S. Geological Survey",
3737
"permissions": {

docs/PyPI_release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ How to Cite
3030

3131
*Software/Code citation for FloPy:*
3232

33-
[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)
33+
[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)
3434

3535

3636
Disclaimer

flopy/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# flopy version file automatically created using update_version.py on June 29, 2023 10:56:39
1+
# flopy version file automatically created using update_version.py on June 30, 2023 08:29:09
22

3-
__version__ = "3.dev4"
3+
__version__ = "3.4.2.dev0"

scripts/update_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def update_version_py(timestamp: datetime, version: Version):
8080
f"# {_project_name} version file automatically created using "
8181
f"{Path(__file__).name} on {timestamp:%B %d, %Y %H:%M:%S}\n\n"
8282
)
83-
f.write(f"__version__ = '{version}'\n")
83+
f.write(f'__version__ = "{version}"\n')
8484
f.close()
8585
print(f"Updated {_version_py_path} to version {version}")
8686

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.dev4
1+
3.4.2.dev0

0 commit comments

Comments
 (0)