Skip to content

Commit

Permalink
Set release version
Browse files Browse the repository at this point in the history
  • Loading branch information
aerispaha committed Nov 22, 2023
1 parent 9f7af61 commit a3d4628
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## Version 0.6.10 (2023/11/22)

### What's Changed
* PR [#154](https://github.com/pyswmm/swmmio/pull/154) Added model summary property and RPT warning function, by @everettsp
* Fixed [#210](https://github.com/pyswmm/swmmio/issues/210) causing readthedocs builds to fail.

## Version 0.6.9 (2023/10/19)

### What's Changed
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# swmmio
*v0.6.9 (2023/10/19)*
*v0.6.10 (2023/11/22)*

[![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.4.10)](https://swmmio.readthedocs.io/en/v0.4.10/?badge=v0.4.10)
[![Documentation Status](https://readthedocs.org/projects/swmmio/badge/?version=v0.6.10)](https://swmmio.readthedocs.io/en/v0.6.10/?badge=v0.6.10)

![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, 6, 10, 'dev0')
VERSION_INFO = (0, 6, 10)
__version__ = '.'.join(map(str, VERSION_INFO))
__author__ = 'Adam Erispaha'
__copyright__ = 'Copyright (c) 2023'
Expand Down

0 comments on commit a3d4628

Please sign in to comment.