From dba8f5cc6e46a96c6575f2a72a3bac6b73151f94 Mon Sep 17 00:00:00 2001 From: Ben Dilday Date: Fri, 4 Sep 2020 18:06:30 -0400 Subject: [PATCH] bumps version to 0.2.3 (#52) --- pybbda/__init__.py | 2 +- setup.cfg | 3 +-- setup.py | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/pybbda/__init__.py b/pybbda/__init__.py index 43987af..68b2dc9 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.1" +_version = "0.2.3" PYBBDA_LOG_LEVEL_NAME = os.environ.get("PYBBDA_LOG_LEVEL", "") _PYBBDA_LOG_LEVEL_MAP = { diff --git a/setup.cfg b/setup.cfg index 9bbff74..006a1fc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,5 @@ [bumpversion] -current_version = 0.2.1 - +current_version = 0.2.3 [flake8] max-line-length = 90 diff --git a/setup.py b/setup.py index aec49c9..0a1acef 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ def process_line(line): setup( name="pybbda", - version="0.2.1", + version="0.2.3", author="Ben Dilday", author_email="ben.dilday.phd@gmail.com", description="Baseball data and analysis in Python",