diff --git a/pybbda/__init__.py b/pybbda/__init__.py index 9e96658..43987af 100644 --- a/pybbda/__init__.py +++ b/pybbda/__init__.py @@ -5,7 +5,7 @@ logging.basicConfig(format="%(levelname)s:%(name)s:%(module)s:%(message)s") logger = logging.getLogger("pybbda") -_version = "0.2.0" +_version = "0.2.1" PYBBDA_LOG_LEVEL_NAME = os.environ.get("PYBBDA_LOG_LEVEL", "") _PYBBDA_LOG_LEVEL_MAP = { diff --git a/setup.cfg b/setup.cfg index f2c3395..9bbff74 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.0 +current_version = 0.2.1 [flake8] max-line-length = 90 diff --git a/setup.py b/setup.py index e152a84..aec49c9 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ def process_line(line): setup( name="pybbda", - version="0.2.0", + version="0.2.1", author="Ben Dilday", author_email="ben.dilday.phd@gmail.com", description="Baseball data and analysis in Python",