Skip to content

Commit

Permalink
1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
luissilva1044894 committed May 27, 2019
1 parent 92b9ff4 commit a23dc6e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pyrez[docs]>=1.0.3,<2
pyrez[docs]>=1.0.4,<2
6 changes: 3 additions & 3 deletions pyrez/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
__author__ = "Luis (Lugg) Gustavo"
__author_email__ = "[email protected]"
__copyright__ = "2018-{}, {}".format(datetime.utcnow().year, __author__)
__build__ = 0x010003
__build__ = 0x010004
__description__ = "An open-source wrapper for Hi-Rez Studios API (Paladins, Realm Royale, and Smite), written in Python"
__license__ = "MIT"
__package_name__ = "pyrez"
__url__ = "https://pyrez.readthedocs.io/en/stable"
__version__ = "1.0.3" #'.'.join(map(str, (1, 0, 3)))
__version__ = "1.0.4" #'.'.join(map(str, (1, 0, 4)))
__title__ = "{}-{}".format(__package_name__.capitalize(), __version__)
version = __version__

from collections import namedtuple
version_info = namedtuple("VersionInfo", "major minor micro releaselevel serial")(major=1, minor=0, micro=3, releaselevel="final", serial=0)
version_info = namedtuple("VersionInfo", "major minor micro releaselevel serial")(major=1, minor=0, micro=4, releaselevel="final", serial=0)

__all__ = (
"__title__",
Expand Down

0 comments on commit a23dc6e

Please sign in to comment.