diff --git a/pybbda/__init__.py b/pybbda/__init__.py index a3afcc9..9e96658 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.1.11" +_version = "0.2.0" PYBBDA_LOG_LEVEL_NAME = os.environ.get("PYBBDA_LOG_LEVEL", "") _PYBBDA_LOG_LEVEL_MAP = { diff --git a/setup.cfg b/setup.cfg index 8fe319b..f2c3395 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.11 +current_version = 0.2.0 [flake8] max-line-length = 90 diff --git a/setup.py b/setup.py index 9b83a2e..e152a84 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ def process_line(line): setup( name="pybbda", - version="0.1.11", + version="0.2.0", author="Ben Dilday", author_email="ben.dilday.phd@gmail.com", description="Baseball data and analysis in Python",