From ef9992585717762f5a537bb9fa5827fcddc17af1 Mon Sep 17 00:00:00 2001 From: Adam Erispaha Date: Thu, 19 Oct 2023 10:25:31 -0400 Subject: [PATCH] Set release version --- CHANGELOG.md | 5 +++++ README.md | 2 +- swmmio/__init__.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e6c7392..3c9d455 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## Version 0.6.9 (2023/10/19) + +### What's Changed +* Fixed [#204](https://github.com/pyswmm/swmmio/issues/204) causing negative offset elevations to be handled incorrectly in profile plot. + ## Version 0.6.8 (2023/09/28) ### What's Changed diff --git a/README.md b/README.md index e24f4d6..f0858bc 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # swmmio -*v0.6.8 (2023/09/28)* +*v0.6.9 (2023/10/19)* [![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 44efd1a..89396df 100644 --- a/swmmio/__init__.py +++ b/swmmio/__init__.py @@ -11,7 +11,7 @@ '''Python SWMM Input/Output Tools''' -VERSION_INFO = (0, 6, 9, 'dev0') +VERSION_INFO = (0, 6, 9) __version__ = '.'.join(map(str, VERSION_INFO)) __author__ = 'Adam Erispaha' __copyright__ = 'Copyright (c) 2023'