Skip to content

Commit

Permalink
Set release version
Browse files Browse the repository at this point in the history
  • Loading branch information
aerispaha committed Dec 3, 2024
1 parent c08e69a commit 69d8217
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Bruce Rindahl <[email protected]>
Bryant E. McDonnell <[email protected]>
BuczynskiRafal <[email protected]>
David Irwin <[email protected]>
barneydobson <[email protected]>
Jackie Fortin-Flefil <[email protected]>
Jenn Wu <[email protected]>
Stijn Van Hoey <[email protected]>
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion swmmio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 69d8217

Please sign in to comment.