diff --git a/outpostcli/constants.py b/outpostcli/constants.py index 30b7a46..cde4988 100644 --- a/outpostcli/constants.py +++ b/outpostcli/constants.py @@ -1,2 +1,2 @@ -cli_version = "0.0.57" +cli_version = "0.0.58" CLI_BINARY_NAME = "outpostcli" diff --git a/outpostcli/lfs/storage_class/__init__.py b/outpostcli/lfs/storage_class/__init__.py index a9fcbcc..91c23bf 100644 --- a/outpostcli/lfs/storage_class/__init__.py +++ b/outpostcli/lfs/storage_class/__init__.py @@ -11,7 +11,7 @@ def handle_multipart_upload(msg: Dict[str, Any]): if storage_provider == "gcs": gcs_multipart_upload(msg) - elif storage_provider == "aws": + elif storage_provider == "s3": s3_multipart_upload(msg) else: write_msg( diff --git a/pyproject.toml b/pyproject.toml index 11efbca..3f69b39 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "outpostcli" -version = "0.0.57" +version = "0.0.58" description = "CLI for Outpost" readme = "README.md" license = { file = "LICENSE" } diff --git a/setup.py b/setup.py index a049198..cd5bb38 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="outpostcli", - version="0.0.57", + version="0.0.58", py_modules=["outpostcli"], install_requires=["Click", "outpostkit"], entry_points={