github marimo-team/marimo 0.4.11

latest releases: 0.11.8, 0.11.7, 0.11.6...
9 months ago

What's Changed

This release includes a few major UX improvements to the marimo editor.

Highlights

Improved DAG viewer. The built-in dependency graph viewer is now much more useful: view your cells in a top-down topological order. Click on an edge to see the variables that flow on it, or double click a cell to automatically bring it into focus.

This viewer can help you understand which cells when run when a given cell runs.

image

Hardware utilization meters. The editor footer shows total RAM and CPU usage on your machine.

image

Use mo.status.progress_bar as a context manager:

with mo.status.progress_bar(total=10) as bar:
    for i in range(10):
        # do work
        bar.update(increment=1, subtitle=f"finished iteration number {i]")

All changes

Shout out to @seantur for making their first contribution (thank you!), and @fuenfundachtzig for continuing to make marimo better.

New Contributors

Full Changelog: 0.4.10...0.4.11

Don't miss a new marimo release

NewReleases is sending notifications on new releases.