Skip to content

Commit

Permalink
Set release version
Browse files Browse the repository at this point in the history
  • Loading branch information
aerispaha committed Apr 21, 2024
1 parent 9c885cb commit dd33d44
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 6 deletions.
3 changes: 2 additions & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Contributing authors listed in alphabetical order:
# Contributing authors listed below:

Abhiram Mullapudi <abhiramm@umich.edu>
Adam Erispaha <aerispaha@gmail.com>
Expand All @@ -11,3 +11,4 @@ Stijn Van Hoey <stijn@fluves.com>
algchyhao <35864573+algchyhao@users.noreply.github.com>
chuwenhao123 <51478550+chuwenhao123@users.noreply.github.com>
everett <everett.snieder@gmail.com>
kaklise <kaklise@sandia.gov>
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## Version 0.7.0 (2024/04/21)

### What's Changed
* Added inp coverage for CONTROLS and PATTERNS, provided by @kaklise [PR219](https://github.com/pyswmm/swmmio/pull/219)
* Made progress on [#57](https://github.com/aerispaha/swmmio/issues/57), read/write interface to all INP sections
* PR [#218](https://github.com/pyswmm/swmmio/pull/218) bump pillow version from 10.2.0 to 10.3.0
* PR [#216](https://github.com/pyswmm/swmmio/pull/216) bump pillow version from 10.2.0 to 10.3.0

## Version 0.6.11 (2023/12/07)

### What's Changed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# swmmio
*v0.6.11 (2023/12/07)*
*v0.7.0 (2024/04/21)*

[![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)
Expand Down
6 changes: 4 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,14 @@

**5.)** Update the version number in [README.md](https://github.com/aerispaha/swmmio/blob/master/README.md)

**5.)** Commit changes
**6.)** Update the AUTHORS by running the [update_authors.sh](tools/update-authors.sh)

**6.)** Commit changes

git add .
git commit -m "Set release version"

**6.)** Add release tag and push to origin
**7.)** Add release tag and push to origin

git tag -a vX.X.X -m 'Release version'
git push --follow-tags
Expand Down
4 changes: 2 additions & 2 deletions swmmio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
'''Python SWMM Input/Output Tools'''


VERSION_INFO = (0, 6, 12, 'dev0')
VERSION_INFO = (0, 7, 0)
__version__ = '.'.join(map(str, VERSION_INFO))
__author__ = 'Adam Erispaha'
__copyright__ = 'Copyright (c) 2023'
__copyright__ = 'Copyright (c) 2024'
__licence__ = ''

0 comments on commit dd33d44

Please sign in to comment.