diff --git a/CHANGELOG.md b/CHANGELOG.md index 69bcbaf..0e68c1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this package will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [0.7.1] - 2025-12-11 + +### Changed +- Update python sdk version to prevent rate limit exceptions. + ## [0.7.0] - 2025-08-26 ### Added @@ -31,6 +36,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Added - Added the capacity to replicate assets' folder structure into collections. +- VCS integration support ### Changed - Updated dependency installation process to use requirements.txt diff --git a/bulk_upload_cli/bulk_upload/bulk_upload_pipeline.py b/bulk_upload_cli/bulk_upload/bulk_upload_pipeline.py index 4b2921e..bae0980 100644 --- a/bulk_upload_cli/bulk_upload/bulk_upload_pipeline.py +++ b/bulk_upload_cli/bulk_upload/bulk_upload_pipeline.py @@ -19,7 +19,7 @@ from bulk_upload.file_explorers import FileExplorer, LocalFileExplorer, VcsFileExplorer -version = "0.7.0" +version = "0.7.1" class PipelineState: diff --git a/bulk_upload_cli/requirements.txt b/bulk_upload_cli/requirements.txt index dc568b2..585f4f3 100644 --- a/bulk_upload_cli/requirements.txt +++ b/bulk_upload_cli/requirements.txt @@ -1,6 +1,6 @@ # This file lists all pip dependencies --extra-index-url https://unity3ddist.jfrog.io/artifactory/api/pypi/am-pypi-prod-local/simple -unity_cloud == 0.10.8 +unity_cloud == 0.10.11 InquirerPy diff --git a/bulk_upload_cli/shared/utils.py b/bulk_upload_cli/shared/utils.py index 7db38a6..0974298 100644 --- a/bulk_upload_cli/shared/utils.py +++ b/bulk_upload_cli/shared/utils.py @@ -74,7 +74,7 @@ def pip_install_requirements(): sys.stderr.write(f"Failed to install Unity Cloud SDK\n") def check_python_version(): - if sys.version_info < (3, 10): + if sys.version_info < (3, 9): return False return True