Skip to content
Open
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion bulk_upload_cli/bulk_upload/bulk_upload_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from bulk_upload.file_explorers import FileExplorer, LocalFileExplorer, VcsFileExplorer


version = "0.7.0"
version = "0.7.1"


class PipelineState:
Expand Down
2 changes: 1 addition & 1 deletion bulk_upload_cli/requirements.txt
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion bulk_upload_cli/shared/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down