Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ dependencies = [
"httpx[http2]>=0.28.1",
"typing_extensions>=4.0; python_version <= '3.12'",
]
authors = [{name='Roger Floriano (petruki)', email='switcher.project@gmail.com'}]
authors = [
{name='Roger Floriano (petruki)'},
{email='switcher.project@gmail.com'},
]
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.9"
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
sonar.projectKey=switcherapi_switcher-client-py
sonar.projectName=switcher-client-py
sonar.organization=switcherapi
sonar.projectVersion=1.0.0
sonar.projectVersion=1.1.0.dev0
sonar.links.homepage=https://github.com/switcherapi/switcher-client-py

sonar.sources=switcher_client
Expand Down
6 changes: 5 additions & 1 deletion switcher_client/__init__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
from switcher_client.client import Client
from switcher_client.switcher import Switcher
from switcher_client.lib.globals.global_context import ContextOptions
from switcher_client.lib.globals.global_snapshot import LoadSnapshotOptions
from switcher_client.lib.globals.global_retry import RetryOptions
from switcher_client.lib.snapshot_watcher import WatchSnapshotCallback
from switcher_client.lib.snapshot import StrategiesType

__all__ = [
'Client',
'Switcher',
'ContextOptions',
'LoadSnapshotOptions',
'RetryOptions',
'WatchSnapshotCallback',
'StrategiesType'
'StrategiesType',
]
2 changes: 1 addition & 1 deletion switcher_client/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.0"
__version__ = "1.1.0.dev0"