Skip to content

Commit 8d294d6

Browse files
codebydivineclaude
andcommitted
Fix version consistency and update User-Agent
- Sync __init__.py version from 0.1.22 to 0.1.36 to match pyproject.toml - Update User-Agent header to reflect current version 0.1.36 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 60c3120 commit 8d294d6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/thegraph_token_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ async def main():
9595
VersionResponse,
9696
)
9797

98-
__version__ = "0.1.22"
98+
__version__ = "0.1.36"
9999
__all__ = [
100100
"OHLC",
101101
"ActivityType",

src/thegraph_token_api/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def __init__(self, api_key: str | None = None, base_url: str | None = None):
4040
self._headers = {
4141
"Authorization": f"Bearer {self.api_key}",
4242
"Content-Type": "application/json",
43-
"User-Agent": "TheGraphTokenAPI-Python-Client/0.1.0",
43+
"User-Agent": "TheGraphTokenAPI-Python-Client/0.1.36",
4444
}
4545

4646
def _validate_pagination(self, limit: int, page: int) -> None:

0 commit comments

Comments
 (0)