Skip to content

Commit 2a60bd1

Browse files
committed
Bump to v2.0.2
Fixes #14
1 parent 1f9a367 commit 2a60bd1

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

akinator/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
__author__ = "Omkaar"
1414
__license__ = "MIT"
1515
__copyright__ = "Copyright 2025 Omkaar"
16-
__version__ = "2.0.1"
16+
__version__ = "2.0.2"
1717

1818

1919
from .client import *

akinator/client.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -317,12 +317,13 @@ def exclude(self):
317317

318318
url = f"https://{self.language}.akinator.com/exclude"
319319
data = {
320-
"step": self.step,
320+
"step": self.step + 1,
321321
"progression": self.progression,
322322
"sid": THEME_IDS[self.theme],
323323
"cm": str(self.child_mode).lower(),
324324
"session": self.session_id,
325-
"signature": self.signature
325+
"signature": self.signature,
326+
"forward_answer": 1
326327
}
327328
self.win = False
328329
self.id_proposition = ""

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
project = "akinator.py"
1111
copyright = "2025, Omkaar"
1212
author = "Ombucha"
13-
release = "2.0.1"
13+
release = "2.0.2"
1414

1515
extensions = ["sphinx.ext.autodoc"]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "akinator.py"
3-
version = "2.0.1"
3+
version = "2.0.2"
44
description = "A basic API wrapper for Akinator."
55
authors = ["Ombucha <[email protected]>"]
66
license = "MIT"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name = "akinator",
12-
version = "2.0.1",
12+
version = "2.0.2",
1313
description = "A basic API wrapper for Akinator.",
1414
long_description = README,
1515
long_description_content_type = "text/x-rst",

0 commit comments

Comments
 (0)