diff --git a/setup.cfg b/setup.cfg index 68fc7c6..6d3b408 100644 --- a/setup.cfg +++ b/setup.cfg @@ -24,7 +24,7 @@ classifiers = Topic :: Software Development :: Libraries :: Python Modules Topic :: Utilities Typing :: Typed -version = 0.1.8 +version = 0.1.9 [options] zip_safe = False diff --git a/src/aiopoke/__init__.py b/src/aiopoke/__init__.py index 385041d..967dbfb 100644 --- a/src/aiopoke/__init__.py +++ b/src/aiopoke/__init__.py @@ -2,7 +2,7 @@ __author__ = "beastmatser" __license__ = "MIT" __copyright__ = "Copyright 2021-present beastmatser" -__version__ = "0.1.7" +__version__ = "0.1.9" from typing import NamedTuple @@ -83,7 +83,7 @@ def __repr__(self) -> str: return f"{self.major}.{self.minor}.{self.micro}-{self.releaselevel}" -version_info: VersionInfo = VersionInfo(0, 1, 8, "final") +version_info: VersionInfo = VersionInfo(0, 1, 9, "final") __all__ = (