From ee2aec3dcdeeace7a35615ddab7a6d3634f6f2ae Mon Sep 17 00:00:00 2001 From: Ashutosh Tripathi Date: Thu, 14 Mar 2024 18:15:16 +0530 Subject: [PATCH 1/2] comment out toc call in search method --- gpapi/googleplay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpapi/googleplay.py b/gpapi/googleplay.py index 9936c94..afd7c2d 100644 --- a/gpapi/googleplay.py +++ b/gpapi/googleplay.py @@ -394,7 +394,7 @@ def search(self, query): path = SEARCH_URL + "?c=3&q={}".format(requests.utils.quote(query)) # FIXME: not sure if this toc call should be here - self.toc() + # self.toc() data = self.executeRequestApi2(path) if utils.hasPrefetch(data): response = data.preFetch[0].response From 6b897152ef1a7c96c70c68b5a63bcffa89bf6938 Mon Sep 17 00:00:00 2001 From: Suresh Kumar Date: Thu, 28 Mar 2024 20:36:38 +0530 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=202.0.0=20=E2=86=92=202.0.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.cfg | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 9ada265..27ac004 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.0 +current_version = 2.0.1 commit = True tag = True diff --git a/setup.py b/setup.py index c33eb2b..11c3381 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ CURRENT_DIR = os.path.abspath( os.path.dirname( __file__ ) ) -__VERSION__ = '2.0.0' +__VERSION__ = '2.0.1' class ProtobufBuilder(_build):