diff --git a/CHANGELOG.md b/CHANGELOG.md index 70b0528..13d2f61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## Version 0.7.2 (2024/11/27) + +### What's Changed +* Handle several Pandas FutureWarnings, provided by @dirwin5 [PR224](https://github.com/pyswmm/swmmio/pull/224) +* Fix docs build process and update docs layout and theme [PR220](https://github.com/pyswmm/swmmio/pull/220) +* Fixed typos in the README [226](https://github.com/pyswmm/swmmio/pull/226) + + ## Version 0.7.1 (2024/08/19) ### What's Changed diff --git a/README.md b/README.md index 5b14174..0d82aa4 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # swmmio -*v0.7.1 (2024/08/19)* +*v0.7.2 (2024/11/27)* [![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 2f668d0..ab2f912 100644 --- a/swmmio/__init__.py +++ b/swmmio/__init__.py @@ -11,7 +11,7 @@ '''Python SWMM Input/Output Tools''' -VERSION_INFO = (0, 7, 2, 'dev0') +VERSION_INFO = (0, 7, 2) __version__ = '.'.join(map(str, VERSION_INFO)) __author__ = 'Adam Erispaha' __copyright__ = 'Copyright (c) 2024'