Skip to content

Commit

Permalink
Set release version
Browse files Browse the repository at this point in the history
  • Loading branch information
aerispaha committed Jun 19, 2019
1 parent 61b2547 commit ac547c7
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 5 deletions.
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
## Version 0.3.6 (2019/06/19)

### Issues Closed

#### Completed

* [Issue 24](https://github.com/aerispaha/swmmio/issues/24) - Assumed column data-type of elements with all numeric values causes conflicts ([PR 56](https://github.com/aerispaha/swmmio/pull/56))
* [Issue 16](https://github.com/aerispaha/swmmio/issues/16) - problem with ImageFont.py ([PR 54](https://github.com/aerispaha/swmmio/pull/54))
* [Issue 9](https://github.com/aerispaha/swmmio/issues/9) - options in swmmio.graphics ([PR 54](https://github.com/aerispaha/swmmio/pull/54))
* [Issue 8](https://github.com/aerispaha/swmmio/issues/8) - version_control module fails in directories with spaces in the path ([PR 56](https://github.com/aerispaha/swmmio/pull/56))

#### Enhancements

* [Issue 53](https://github.com/aerispaha/swmmio/issues/53) - include test models in package distribution
* [Issue 47](https://github.com/aerispaha/swmmio/issues/47) - Set and reproject a model's coordinate reference system ([PR 48](https://github.com/aerispaha/swmmio/pull/48))
* [Issue 44](https://github.com/aerispaha/swmmio/issues/44) - Alleviate Pandas .ix indexing depreciation warning ([PR 48](https://github.com/aerispaha/swmmio/pull/48))
* [Issue 12](https://github.com/aerispaha/swmmio/issues/12) - Standardize the organization of the main and submodules ([PR 48](https://github.com/aerispaha/swmmio/pull/48))
* [Issue 9](https://github.com/aerispaha/swmmio/issues/9) - options in swmmio.graphics ([PR 54](https://github.com/aerispaha/swmmio/pull/54))

#### Bugs fixed

* [Issue 51](https://github.com/aerispaha/swmmio/issues/51) - invalid import in swmmio.utils.modify_model
* [Issue 49](https://github.com/aerispaha/swmmio/issues/49) - Some coordinates are being rounded
* [Issue 24](https://github.com/aerispaha/swmmio/issues/24) - Assumed column data-type of elements with all numeric values causes conflicts ([PR 56](https://github.com/aerispaha/swmmio/pull/56))
* [Issue 16](https://github.com/aerispaha/swmmio/issues/16) - problem with ImageFont.py ([PR 54](https://github.com/aerispaha/swmmio/pull/54))
* [Issue 8](https://github.com/aerispaha/swmmio/issues/8) - version_control module fails in directories with spaces in the path ([PR 56](https://github.com/aerispaha/swmmio/pull/56))

In this release 14 issues were closed.

### Pull Requests Merged

* [PR 56](https://github.com/aerispaha/swmmio/pull/56) - Refactoring graphics, build instructions tests and bug fix ([9](https://github.com/aerispaha/swmmio/issues/9), [8](https://github.com/aerispaha/swmmio/issues/8), [24](https://github.com/aerispaha/swmmio/issues/24), [16](https://github.com/aerispaha/swmmio/issues/16))
* [PR 54](https://github.com/aerispaha/swmmio/pull/54) - Refactoring swmmio graphics ([9](https://github.com/aerispaha/swmmio/issues/9), [16](https://github.com/aerispaha/swmmio/issues/16))
* [PR 48](https://github.com/aerispaha/swmmio/pull/48) - Improved import pattern, coordinate ref system support ([47](https://github.com/aerispaha/swmmio/issues/47), [45](https://github.com/aerispaha/swmmio/issues/45), [45](https://github.com/aerispaha/swmmio/issues/45), [44](https://github.com/aerispaha/swmmio/issues/44), [12](https://github.com/aerispaha/swmmio/issues/12))

In this release 3 pull requests were closed.
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ include swmmio/graphics/fonts/*.ttf
include swmmio/defs/*.json
include swmmio/tests/data/*.inp
include swmmio/tests/data/*.rpt
include swmmio/tests/data/*.csv
include swmmio/tests/data/*.csv
include swmmio/tests/data/*.txt
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# SWMMIO
*v0.3.5.dev1*
# SWMMIO
*v0.3.6*

[![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://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)

![Kool Picture](docs/img/impact_of_option.png?raw=true "Impact of Option")
Expand Down
2 changes: 1 addition & 1 deletion swmmio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
'''Python SWMM Input/Output Tools'''


VERSION_INFO = (0, 3, 5, 'dev1')
VERSION_INFO = (0, 3, 6)
__version__ = '.'.join(map(str, VERSION_INFO))
__author__ = 'Adam Erispaha'
__copyright__ = 'Copyright (c) 2016'
Expand Down

0 comments on commit ac547c7

Please sign in to comment.