From b1ac75eab835113788cdb6307cf5f81576e5bff2 Mon Sep 17 00:00:00 2001 From: Adam Erispaha Date: Thu, 29 Dec 2022 17:41:59 -0500 Subject: [PATCH] Set release version --- CHANGELOG.md | 23 +++++++++++++++++++++++ README.md | 2 +- swmmio/__init__.py | 2 +- 3 files changed, 25 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 760ecf3..a6fa91a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,26 @@ +## Version 0.6.0 (2022/12/29) + +### Issues Closed + +* [Issue 75](https://github.com/aerispaha/swmmio/issues/75) - Update and unit test the run_models module +* [Issue 153](https://github.com/aerispaha/swmmio/issues/153) - Add Profile Plotter +* [PR 165](https://github.com/aerispaha/swmmio/pull/165) - Add profile plotter and pyswmm integration +* [PR 170](https://github.com/aerispaha/swmmio/pull/170) - Add INP sections to model.inp properties + * raingages + * evaporation + * pollutants + * rdii + * hydrographs + * buildup + * washoff + * coverages + * loadings + * landuses + +In this release 2 issues were closed, 2 PRs were merged, and a lot of progress was +made on [Issue 57](https://github.com/aerispaha/swmmio/issues/57). + + ## Version 0.5.3 (2022/12/21) ### Issues Closed diff --git a/README.md b/README.md index e2878f7..858365b 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # swmmio -*v0.5.3 (2022/12/21)* +*v0.6.0 (2022/12/29)* [![Build status](https://ci.appveyor.com/api/projects/status/qywujm5w2wm0y2tv/branch/master?svg=true)](https://ci.appveyor.com/project/aerispaha/swmmio/branch/master) ![example workflow](https://github.com/aerispaha/swmmio/actions/workflows/python-app.yml/badge.svg) diff --git a/swmmio/__init__.py b/swmmio/__init__.py index 3cc1e90..72fe11c 100644 --- a/swmmio/__init__.py +++ b/swmmio/__init__.py @@ -11,7 +11,7 @@ '''Python SWMM Input/Output Tools''' -VERSION_INFO = (0, 5, 4, 'dev0') +VERSION_INFO = (0, 6, 0) __version__ = '.'.join(map(str, VERSION_INFO)) __author__ = 'Adam Erispaha' __copyright__ = 'Copyright (c) 2022'