Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI : Update to Cortex 10.5.4.2 #5566

Merged
merged 1 commit into from
Nov 28, 2023
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
2 changes: 1 addition & 1 deletion .github/workflows/main/installDependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

# Determine default archive URL.

defaultURL = "https://github.com/ImageEngine/cortex/releases/download/10.5.4.0/cortex-10.5.4.0-{platform}-python3.{extension}".format(
defaultURL = "https://github.com/ImageEngine/cortex/releases/download/10.5.4.2/cortex-10.5.4.2-{platform}-python3.{extension}".format(
platform = { "darwin" : "osx", "win32" : "windows" }.get( sys.platform, "linux" ),
extension = "tar.gz" if sys.platform != "win32" else "zip"
)
Expand Down
3 changes: 3 additions & 0 deletions Changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ Fixes
- Fixed translation of `UsdPreviewSurface` normal maps.
- Fixed translation of `UsdPreviewSurface` `specularColor` fallback value.
- Scene History : Fixed error caused by `Alt+E` keypress on panels other than the Viewer, HierarchyView, LightEditor or NodeEditor.
- ImageReader : Fixed crashes caused by null `ustring` metadata values.
- Exception handling : Fixed memory leak caused by translation of `IECore::Exception` from C++ to Python and back again.

API
---
Expand All @@ -43,6 +45,7 @@ API
Build
-----

- Cortex : Updated to version 10.5.4.2.
- Instancer : Fixed ambiguous reference compilation errors when building with Boost 1.70.

1.3.7.0 (relative to 1.3.6.1)
Expand Down
Loading