Skip to content

Commit

Permalink
🔖 v0.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
beastmatser committed Nov 11, 2024
1 parent a5338a4 commit b855fa1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ classifiers =
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Utilities
Typing :: Typed
version = 0.1.9
version = 0.1.10

[options]
zip_safe = False
Expand Down
4 changes: 2 additions & 2 deletions src/aiopoke/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
__author__ = "beastmatser"
__license__ = "MIT"
__copyright__ = "Copyright 2021-present beastmatser"
__version__ = "0.1.9"
__version__ = "0.1.10"

from typing import NamedTuple

Expand Down Expand Up @@ -83,7 +83,7 @@ def __repr__(self) -> str:
return f"{self.major}.{self.minor}.{self.micro}-{self.releaselevel}"


version_info: VersionInfo = VersionInfo(0, 1, 9, "final")
version_info: VersionInfo = VersionInfo(0, 1, 10, "final")


__all__ = (
Expand Down

0 comments on commit b855fa1

Please sign in to comment.