Skip to content

Commit 37d502a

Browse files
author
Shahar Carmi
committed
update version
1 parent d582f1c commit 37d502a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ where = ["src"]
77

88
[project]
99
name = "brightdata-sdk"
10-
version = "2.0.0"
10+
version = "2.1.0"
1111
description = "Modern async-first Python SDK for Bright Data APIs"
1212
authors = [{name = "Bright Data", email = "support@brightdata.com"}]
1313
license = {text = "MIT"}

src/brightdata/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Bright Data Python SDK - Modern async-first SDK for Bright Data APIs."""
22

3-
__version__ = "2.0.0"
3+
__version__ = "2.1.0"
44

55
# Export main client (async)
66
from .client import BrightDataClient

src/brightdata/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Version information."""
22

3-
__version__ = "2.0.0"
3+
__version__ = "2.1.0"

src/brightdata/cli/main.py

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

1414

1515
@click.group(invoke_without_command=True)
16-
@click.version_option(version="2.0.0", prog_name="brightdata")
16+
@click.version_option(version="2.1.0", prog_name="brightdata")
1717
@click.option("--banner/--no-banner", default=True, help="Show/hide banner on startup")
1818
@click.pass_context
1919
def cli(ctx: click.Context, banner: bool) -> None:

src/brightdata/core/engine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ async def __aenter__(self):
9292
headers={
9393
"Authorization": f"Bearer {self.bearer_token}",
9494
"Content-Type": "application/json",
95-
"User-Agent": "brightdata-sdk/2.0.0",
95+
"User-Agent": "brightdata-sdk/2.1.0",
9696
},
9797
)
9898

0 commit comments

Comments
 (0)