diff --git a/aiopogo/__init__.py b/aiopogo/__init__.py index fca63dd5..2791e5a7 100755 --- a/aiopogo/__init__.py +++ b/aiopogo/__init__.py @@ -3,7 +3,7 @@ import logging __title__ = 'aiopogo' -__version__ = '1.6.1' +__version__ = '1.6.2' __author__ = 'David Christenson' __license__ = 'MIT License' __copyright__ = 'Copyright (c) 2017 David Christenson ' diff --git a/aiopogo/hash_server.py b/aiopogo/hash_server.py index 6597677d..6f7f07a3 100644 --- a/aiopogo/hash_server.py +++ b/aiopogo/hash_server.py @@ -26,7 +26,7 @@ class HashServer: - endpoint = "http://pokehash.buddyauth.com/api/v129_1/hash" + endpoint = "http://pokehash.buddyauth.com/api/v131_0/hash" _session = None multi = False loop = get_event_loop() diff --git a/aiopogo/rpc_api.py b/aiopogo/rpc_api.py index 0c36fb4b..32bf4ece 100755 --- a/aiopogo/rpc_api.py +++ b/aiopogo/rpc_api.py @@ -265,7 +265,7 @@ async def _build_main_request(self, subrequests, player_position=None): sen.gravity_z = rand.triangular(-1, 1, -.4) sen.status = 3 - sig.version_hash = -3226782243204485589 + sig.version_hash = 1296456256998993698 try: for key in self.device_info: diff --git a/requirements.txt b/requirements.txt index 05f884ca..220f60f2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,5 +2,5 @@ protobuf>=3.0.0 gpsoauth>=0.4.0 protobuf3-to-dict>=0.1.4 aiohttp==1.3.* -pycrypt>=0.2.0 +pycrypt>=0.5.0 pogeo>=0.2.0 diff --git a/setup.py b/setup.py index 1dbb95e4..44a4087f 100755 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ author='David Christenson', author_email='mail@noctem.xyz', description='Asynchronous Pokemon API lib', - version='1.6.1', + version='1.6.2', url='https://github.com/Noctem/aiopogo', packages=find_packages(), install_requires=[ @@ -14,7 +14,7 @@ 'gpsoauth>=0.4.0', 'protobuf3-to-dict>=0.1.4', 'aiohttp==1.3.*', - 'pycrypt>=0.2.0', + 'pycrypt>=0.5.0', 'pogeo>=0.2.0'], extras_require={'ujson': ['ujson']}, classifiers=[