From b87ec403cd9731f9bebdf280d967e21bdb3ed3ce Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 28 Dec 2022 16:52:00 +0000 Subject: [PATCH 1/3] ci(release): set version to 0.0.7, update changelog --- CHANGELOG.md | 7 +++++++ HISTORY.md | 7 +++++++ modflow_devtools/__init__.py | 2 +- 3 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..208fd712 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,7 @@ +### Version 0.0.7 + +#### Refactor + +* [refactor(executables)](https://github.com/modflowpy/flopy/commit/58c3642d0e6d20d5e34783b5b61e8238058e102f): Simplify exes container, allow dict access (#24). Committed by w-bonelli on 2022-12-28. +* [refactor](https://github.com/modflowpy/flopy/commit/50c83a9eaed532722549a2d9da1eb79ed8cf01be): Drop Python 3.7, add Python 3.11 (#25). Committed by w-bonelli on 2022-12-28. + diff --git a/HISTORY.md b/HISTORY.md index 78b37937..db06367e 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,10 @@ +### Version 0.0.7 + +#### Refactoring + +* [refactor(executables)](https://github.com/modflowpy/flopy/commit/58c3642d0e6d20d5e34783b5b61e8238058e102f): Simplify exes container, allow dict access (#24). Committed by w-bonelli on 2022-12-28. +* [refactor](https://github.com/modflowpy/flopy/commit/50c83a9eaed532722549a2d9da1eb79ed8cf01be): Drop Python 3.7, add Python 3.11 (#25). Committed by w-bonelli on 2022-12-28. + ### Version 0.0.6 #### New features diff --git a/modflow_devtools/__init__.py b/modflow_devtools/__init__.py index 5fb4eb6c..712b74c3 100644 --- a/modflow_devtools/__init__.py +++ b/modflow_devtools/__init__.py @@ -1,5 +1,5 @@ __author__ = "Joseph D. Hughes" -__date__ = "Dec 16, 2022" +__date__ = "Dec 28, 2022" __version__ = "0.0.7" __maintainer__ = "Joseph D. Hughes" __email__ = "jdhughes@usgs.gov" From 5c698a9c2333decf541b28d7221b970f35c72019 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 28 Dec 2022 17:14:39 +0000 Subject: [PATCH 2/3] ci(release): update to development version 0.0.8 --- README.md | 2 +- modflow_devtools/__init__.py | 2 +- version.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a88cfeb6..dc263e6a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # MODFLOW developer tools -### Version 0.0.7 — release candidate +### Version 0.0.8 — release candidate [![CI](https://github.com/MODFLOW-USGS/modflow-devtools/actions/workflows/ci.yml/badge.svg)](https://github.com/MODFLOW-USGS/modflow-devtools/actions/workflows/ci.yml) [![GitHub tag](https://img.shields.io/github/tag/MODFLOW-USGS/modflow-devtools.svg)](https://github.com/MODFLOW-USGS/modflow-devtools/tags/latest) [![PyPI Version](https://img.shields.io/pypi/v/modflow-devtools.png)](https://pypi.python.org/pypi/modflow-devtools) diff --git a/modflow_devtools/__init__.py b/modflow_devtools/__init__.py index 712b74c3..7ae4cadf 100644 --- a/modflow_devtools/__init__.py +++ b/modflow_devtools/__init__.py @@ -1,6 +1,6 @@ __author__ = "Joseph D. Hughes" __date__ = "Dec 28, 2022" -__version__ = "0.0.7" +__version__ = "0.0.8" __maintainer__ = "Joseph D. Hughes" __email__ = "jdhughes@usgs.gov" __status__ = "Production" diff --git a/version.txt b/version.txt index 5c4511c3..7d6b3eb3 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.0.7 \ No newline at end of file +0.0.8 \ No newline at end of file From ec64e70cc1066fef373d3fc0fa87fc6e30ac225b Mon Sep 17 00:00:00 2001 From: w-bonelli Date: Wed, 28 Dec 2022 12:25:58 -0500 Subject: [PATCH 3/3] Delete CHANGELOG.md --- CHANGELOG.md | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 208fd712..00000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,7 +0,0 @@ -### Version 0.0.7 - -#### Refactor - -* [refactor(executables)](https://github.com/modflowpy/flopy/commit/58c3642d0e6d20d5e34783b5b61e8238058e102f): Simplify exes container, allow dict access (#24). Committed by w-bonelli on 2022-12-28. -* [refactor](https://github.com/modflowpy/flopy/commit/50c83a9eaed532722549a2d9da1eb79ed8cf01be): Drop Python 3.7, add Python 3.11 (#25). Committed by w-bonelli on 2022-12-28. -