Skip to content

Commit 2f2c3f4

Browse files
committed
feat: add playwright proxy formatter
1 parent 1bd4b21 commit 2f2c3f4

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

proxyproviders/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
from . import algorithms
2-
from .models.proxy import Proxy
2+
from .models.proxy import Proxy, ProxyFormat
33
from .providers.brightdata import BrightData
44
from .providers.webshare import Webshare
55
from .proxy_provider import ProxyConfig, ProxyProvider
6+
from .version import __version__
67

78
__all__ = [
89
"ProxyProvider",
910
"ProxyConfig",
1011
"Proxy",
12+
"ProxyFormat",
1113
"Webshare",
1214
"BrightData",
1315
"algorithms",

proxyproviders/version.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
"""Version information for proxyproviders package."""
2+
3+
__version__ = "0.2.1"

pyproject.toml

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

55
[project]
66
name = "proxyproviders"
7-
version = "0.2.0"
7+
version = "0.2.1"
88
description = "A unified interface for different proxy providers"
99
readme = "README.md"
1010
authors = [{ name = "David Teather", email = "[email protected]" }]

setup.cfg

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.2.0
2+
current_version = 0.2.1
33

44
[bumpversion:file:setup.cfg]
55
search = version = {current_version}
@@ -9,9 +9,13 @@ replace = version = {new_version}
99
search = version = "{current_version}"
1010
replace = version = "{new_version}"
1111

12+
[bumpversion:file:proxyproviders/version.py]
13+
search = __version__ = "{current_version}"
14+
replace = __version__ = "{new_version}"
15+
1216
[metadata]
1317
name = proxyproviders
14-
version = 0.2.0
18+
version = attr: proxyproviders.version.__version__
1519
description = A unified interface for different proxy providers
1620
long_description = file: README.md
1721
long_description_content_type = text/markdown

0 commit comments

Comments
 (0)