diff --git a/AUTHORS b/AUTHORS index f9c82a9..d85a25e 100644 --- a/AUTHORS +++ b/AUTHORS @@ -7,6 +7,7 @@ Bruce Rindahl Bryant E. McDonnell BuczynskiRafal David Irwin +barneydobson Jackie Fortin-Flefil Jenn Wu Stijn Van Hoey diff --git a/CHANGELOG.md b/CHANGELOG.md index 13d2f61..ca596a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## Version 0.7.3 (2024/12/02) + +### What's Changed +* Added coverage for the [OUTLETS] INP section. Now we can get a dataframe of the OUTLETS section in models with model.inp.outlets. The higher level API now also include outlets in the model.links accessor. [PR229](https://github.com/pyswmm/swmmio/pull/229) +* handled all future warnings from Pandas and a few warnings from pytest [PR230](https://github.com/pyswmm/swmmio/pull/230) +* Revised setup.py to allow networkx>3, provided by @barneydobson [PR232](https://github.com/pyswmm/swmmio/pull/232) + ## Version 0.7.2 (2024/11/27) ### What's Changed diff --git a/README.md b/README.md index 0d82aa4..7a9bc2b 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,8 @@ # swmmio -*v0.7.2 (2024/11/27)* +*v0.7.3 (2024/12/02)* -[![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) -[![Documentation Status](https://readthedocs.org/projects/swmmio/badge/?version=v0.6.10)](https://swmmio.readthedocs.io/en/v0.6.10/?badge=v0.6.10) +[![Documentation Status](https://readthedocs.org/projects/swmmio/badge/?version=latest)](https://swmmio.readthedocs.io/en/latest/?badge=latest) ![Kool Picture](docs/img/impact_of_option.png?raw=true "Impact of Option") `swmmio` is a set of python tools aiming to provide a means for version control and visualizing results from the EPA Stormwater Management Model (SWMM). Command line tools are also provided for running models individually and in parallel via Python's `multiprocessing` module. These tools are being developed specifically for the application of flood risk management, though most functionality is applicable to SWMM modeling in general. diff --git a/swmmio/__init__.py b/swmmio/__init__.py index ab2f912..aa775b1 100644 --- a/swmmio/__init__.py +++ b/swmmio/__init__.py @@ -11,7 +11,7 @@ '''Python SWMM Input/Output Tools''' -VERSION_INFO = (0, 7, 2) +VERSION_INFO = (0, 7, 3) __version__ = '.'.join(map(str, VERSION_INFO)) __author__ = 'Adam Erispaha' __copyright__ = 'Copyright (c) 2024'