Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
aj-ya committed May 22, 2024
1 parent ded3320 commit a8159b5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion outpostcli/constants.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
cli_version = "0.0.57"
cli_version = "0.0.58"
CLI_BINARY_NAME = "outpostcli"
2 changes: 1 addition & 1 deletion outpostcli/lfs/storage_class/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="outpostcli",
version="0.0.57",
version="0.0.58",
py_modules=["outpostcli"],
install_requires=["Click", "outpostkit"],
entry_points={
Expand Down

0 comments on commit a8159b5

Please sign in to comment.