Skip to content

Commit

Permalink
Bump version to 2.1.1
Browse files Browse the repository at this point in the history
Only minor changes to setup.py
  • Loading branch information
iamlikeme committed Apr 17, 2018
1 parent 6aa0d90 commit 3219cd7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from distutils.core import setup
import os

version = "2.1.0"
version = "2.1.1"
this_dir = os.path.dirname(__file__)

with open(os.path.join(this_dir, "README.md"), "rb") as fo:
Expand All @@ -14,7 +14,6 @@
version=version,
description='Implementation of ASTM E1049-85 rainflow cycle counting algorythm',
long_description=long_description,
long_description_content_type="text/markdown",
author='Piotr Janiszewski',
author_email='[email protected]',
url='https://github.com/iamlikeme/rainflow/',
Expand Down
2 changes: 1 addition & 1 deletion src/rainflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Implements rainflow cycle counting algorythm for fatigue analysis
according to section 5.4.4 in ASTM E1049-85 (2011).
"""
__version__ = "2.1.0"
__version__ = "2.1.1"

from collections import deque, defaultdict
import functools
Expand Down

0 comments on commit 3219cd7

Please sign in to comment.