v0.16.0¶
Release date: 2025-07-02
Early Access
The Luminary Cloud API and Python SDK are Early Access features that are still under development. View the Luminary Cloud Early Access Terms. The interface may change, and you may need to migrate or discard scripts and configuration files multiple times before v1.0.0 is released. In the future, migrations may also be necessary when upgrading to new major versions of the SDK (e.g. v2.0.0).
Release Notes¶
This release has a small breaking change and a few new features.
Breaking Changes¶
Mesh.geometry_version()
now returnsNone
if the mesh has no associated GeometryVersion. It used to raise an exception.
Features¶
The
robust_startup
attribute ofFluidImplicitRelaxation
used to be required. It is now optional, and the default value is a new option calledROBUST_STARTUP_AUTO
.Scene
now has a.to_code()
method for generating the Python code that would recreate theScene
.
Deprecations¶
None.
Bug Fixes / Improvements¶
None.
Migration Guide¶
If you were using Mesh.geometry_version()
and checking for an exception to
indicate that your Mesh doesn’t have a Geometry, you must now check the return
value for None
instead.