Skip to content

Commit

Permalink
Merge pull request #168 from rjleveque/v5.6.1rc-beta
Browse files Browse the repository at this point in the history
update version number to 5.6.1
  • Loading branch information
rjleveque committed Oct 29, 2019
2 parents 659f7f6 + e0ed6d1 commit 08335f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion clawpack/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
if _os.path.isdir(_sdir))
del _root, _path

__version__ = '5.6.0'
__version__ = '5.6.1' # must also be changed in setup.py
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,10 @@
"""

# version must also be changed in clawpack/__init__.py
MAJOR = 5
MINOR = 6
MICRO = 0
MICRO = 1
TYPE = ''
VERSION = '%d.%d.%d%s' % (MAJOR, MINOR, MICRO, TYPE)

Expand Down

0 comments on commit 08335f6

Please sign in to comment.