diff --git a/.gitignore b/.gitignore index 71e6852..1dcc5d2 100644 --- a/.gitignore +++ b/.gitignore @@ -60,3 +60,5 @@ target/ # pyenv python configuration file .python-version + +*DS_Store* diff --git a/HISTORY.rst b/HISTORY.rst index 724f050..b6a871d 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -5,7 +5,7 @@ History 0.1.0 (2017-07-20) 0.1.1 (2017-07-20) 0.1.2 (2017-07-24) -0.1.3 (2017-07-26) +0.1.4 (2017-07-26) ------------------ * First release on PyPI. diff --git a/dc_stat_think/__init__.py b/dc_stat_think/__init__.py index 081a0a7..1a830c9 100644 --- a/dc_stat_think/__init__.py +++ b/dc_stat_think/__init__.py @@ -4,7 +4,7 @@ __author__ = """Justin Bois""" __email__ = 'bois@caltech.edu' -__version__ = '0.1.3' +__version__ = '0.1.4' from .dc_stat_think import * diff --git a/setup.cfg b/setup.cfg index a8d3abe..6f8b1f0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.3 +current_version = 0.1.4 commit = True tag = True diff --git a/setup.py b/setup.py index cb7d8b1..f78ae47 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ setup( name='dc_stat_think', - version='0.1.3', + version='0.1.4', description="Utility functions used in the DataCamp Statistical Thinking courses.", long_description=readme + '\n\n' + history, author="Justin Bois",