File tree Expand file tree Collapse file tree 4 files changed +13
-4
lines changed
Expand file tree Collapse file tree 4 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 11from . import algorithms
2- from .models .proxy import Proxy
2+ from .models .proxy import Proxy , ProxyFormat
33from .providers .brightdata import BrightData
44from .providers .webshare import Webshare
55from .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" ,
Original file line number Diff line number Diff line change 1+ """Version information for proxyproviders package."""
2+
3+ __version__ = "0.2.1"
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44
55[project ]
66name = " proxyproviders"
7- version = " 0.2.0 "
7+ version = " 0.2.1 "
88description = " A unified interface for different proxy providers"
99readme = " README.md"
1010authors = [{
name =
" David Teather" ,
email =
" [email protected] " }]
Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 0.2.0
2+ current_version = 0.2.1
33
44[bumpversion:file:setup.cfg]
55search = version = {current_version}
@@ -9,9 +9,13 @@ replace = version = {new_version}
99search = version = " {current_version}"
1010replace = version = " {new_version}"
1111
12+ [bumpversion:file:proxyproviders/version.py]
13+ search = __version__ = " {current_version}"
14+ replace = __version__ = " {new_version}"
15+
1216[metadata]
1317name = proxyproviders
14- version = 0.2.0
18+ version = attr: proxyproviders.version.__version__
1519description = A unified interface for different proxy providers
1620long_description = file: README.md
1721long_description_content_type = text/markdown
You can’t perform that action at this time.
0 commit comments