Skip to content

Commit f7a2e9e

Browse files
Mlaz-codeclaude
andcommitted
chore: release v0.2.2
- Add retry for transient upstream failures - Drop Python 3.9 support (EOL 2025-10) - Bump USER_AGENT to match package version Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 2f4dc93 commit f7a2e9e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "sharpapi"
7-
version = "0.2.1"
7+
version = "0.2.2"
88
description = "Official Python SDK for the SharpAPI real-time sports betting odds API"
99
readme = "README.md"
1010
license = "MIT"

src/sharpapi/_base.py

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

1818
DEFAULT_BASE_URL = "https://api.sharpapi.io"
1919
DEFAULT_TIMEOUT = 30.0
20-
USER_AGENT = "sharpapi-python/0.2.0"
20+
USER_AGENT = "sharpapi-python/0.2.2"
2121

2222
RETRY_STATUSES = frozenset({502, 503, 504})
2323
RETRY_MAX_ATTEMPTS = 3

0 commit comments

Comments
 (0)