From a1e8347b6c0c6cf2fa20eaa1649549d925929bc4 Mon Sep 17 00:00:00 2001 From: Adam Erispaha Date: Fri, 25 Oct 2019 17:26:32 -0400 Subject: [PATCH] Set release version --- CHANGELOG.md | 18 ++++++++++++++++++ README.md | 2 +- swmmio/__init__.py | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f73d09..491d9c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +## Version 0.3.7 (2019/10/25) + +### Issues Closed + +#### Bugs fixed + +* [Issue 74](https://github.com/aerispaha/swmmio/issues/74) - drop support of Python 2.7 ([PR 73](https://github.com/aerispaha/swmmio/pull/73)) +* [Issue 72](https://github.com/aerispaha/swmmio/issues/72) - update pillow dependency ([PR 73](https://github.com/aerispaha/swmmio/pull/73)) +* [Issue 71](https://github.com/aerispaha/swmmio/issues/71) - require networkx >2.4 ([PR 73](https://github.com/aerispaha/swmmio/pull/73)) + +In this release 3 issues were closed. + +### Pull Requests Merged + +* [PR 73](https://github.com/aerispaha/swmmio/pull/73) - Update networkx, autorelease to PyPi ([74](https://github.com/aerispaha/swmmio/issues/74), [72](https://github.com/aerispaha/swmmio/issues/72), [71](https://github.com/aerispaha/swmmio/issues/71)) + +In this release 1 pull request was closed. + ## Version 0.3.6 (2019/06/19) ### Issues Closed diff --git a/README.md b/README.md index 717aac3..82cc871 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # SWMMIO -*v0.3.6.dev0* +*v0.3.7* [![Build status](https://ci.appveyor.com/api/projects/status/qywujm5w2wm0y2tv/branch/master?svg=true)](https://ci.appveyor.com/project/aerispaha/swmmio/branch/master) [![Build Status](https://travis-ci.com/aerispaha/swmmio.svg?branch=master)](https://travis-ci.com/aerispaha/swmmio) diff --git a/swmmio/__init__.py b/swmmio/__init__.py index 1858f1f..031bcff 100644 --- a/swmmio/__init__.py +++ b/swmmio/__init__.py @@ -5,7 +5,7 @@ '''Python SWMM Input/Output Tools''' -VERSION_INFO = (0, 3, 6, 'dev1') +VERSION_INFO = (0, 3, 7) __version__ = '.'.join(map(str, VERSION_INFO)) __author__ = 'Adam Erispaha' __copyright__ = 'Copyright (c) 2016'