From ffb6bd2d6838a2a699136e573c7124254e0bb06b Mon Sep 17 00:00:00 2001 From: Ben Dilday Date: Sun, 21 Jun 2020 20:02:20 -0400 Subject: [PATCH] bump version to v0.1.3 (#33) --- pybaseballdatana/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pybaseballdatana/__init__.py b/pybaseballdatana/__init__.py index ce77a71..ca49c1c 100644 --- a/pybaseballdatana/__init__.py +++ b/pybaseballdatana/__init__.py @@ -5,7 +5,7 @@ logging.basicConfig(format="%(levelname)s:%(name)s:%(module)s:%(message)s") logger = logging.getLogger("pybaseballdatana") -_version = "0.1.2" +_version = "0.1.3" PYBBDA_LOG_LEVEL_NAME = os.environ.get("PYBBDA_LOG_LEVEL", "") _PYBBDA_LOG_LEVEL_MAP = { diff --git a/setup.cfg b/setup.cfg index fa835f2..9d0bca8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.2 +current_version = 0.1.3 [flake8] max-line-length = 90 diff --git a/setup.py b/setup.py index fb0f699..717672c 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ def process_line(line): setup( name="pybbda", - version="0.1.2", + version="0.1.3", author="Ben Dilday", author_email="ben.dilday.phd@gmail.com", description="Baseball data and analysis in Python",