From c3a84f171490a940c72bf25ef85e7aec16cce0e0 Mon Sep 17 00:00:00 2001 From: rerun-bot <132550499+rerun-bot@users.noreply.github.com> Date: Thu, 6 Feb 2025 18:31:39 +0100 Subject: [PATCH] Release 0.22.0 (#8950) ### Next steps - Test the release - If this is an 'alpha' release, you can just merge the pull request. - Otherwise: - For any added commits, run the release workflow in 'rc' mode again - After testing, _ensure that this PR is mergeable to _, then run the release workflow in 'release' mode - Once the final release workflow finishes it will create a GitHub release for you. Then: - [x] Sanity check the build artifacts: - [x] pip install: does it install and run? - [x] cargo install of cli tool: does it install and run? - [x] C++ SDK zip: does it contain rerun_c for all platforms? - [x] Populate the release with the changelog and a nice header video/picture, check , then click . - [x] Update the [google colab notebooks](https://colab.research.google.com/drive/1R9I7s4o6wydQC_zkybqaSRFTtlEaked_) to install this version and re-execute the notebook. - [x] Update landing's version of the web viewer (@jprochazk) A few hours after the GitHub release is created, will create a [conda feedstock PR](https://github.com/conda-forge/rerun-sdk-feedstock/pulls). Make sure Jeremy is on top of it! - [x] Tests - [ ] Windows - [ ] Linux - [x] MacOS ### Other TODO * [x] Merge cherry/pick https://github.com/rerun-io/rerun/pull/8947 * [x] Make a GIF/image for the new help menus and add to changelog * [x] Make a GIF/image for "Copy view as screenshot" and add to changelog ### Changelog [Rendered](https://github.com/rerun-io/rerun/blob/release-0.22.0/CHANGELOG.md#0220---entity-filter--improved-partial-update-api---2025-02-06) ### The release Video showing off the new entity filtering: https://github.com/user-attachments/assets/75ae114b-a55c-452e-9003-d8f447854d2a Gif showing off the new notification panel: ![notification-panel](https://github.com/user-attachments/assets/0fb651d7-256a-48d7-a78e-81776ec39ba8) Screenshot views on web: ![image](https://github.com/user-attachments/assets/bf36ee0b-2f64-473e-af48-dfd22c887b9c) New help texts for all our views: ![image](https://github.com/user-attachments/assets/8b2546c7-c54f-4c25-8b82-fd9abdc6c31e) --------- Co-authored-by: Emil Ernerfeldt Co-authored-by: Andreas Reich --- CHANGELOG.md | 42 ++- Cargo.lock | 240 +++++++++--------- Cargo.toml | 136 +++++----- crates/store/re_grpc_server/README.md | 4 +- crates/store/re_sorbet/README.md | 4 +- crates/utils/re_arrow_util/README.md | 4 +- crates/utils/re_auth/README.md | 2 - crates/utils/re_byte_size/README.md | 4 +- .../reference/migration/migration-0-22.md | 32 +-- examples/rust/clock/Cargo.toml | 2 +- examples/rust/custom_callback/Cargo.toml | 2 +- examples/rust/custom_data_loader/Cargo.toml | 2 +- .../rust/custom_store_subscriber/Cargo.toml | 2 +- examples/rust/custom_view/Cargo.toml | 2 +- examples/rust/dataframe_query/Cargo.toml | 2 +- examples/rust/dna/Cargo.toml | 2 +- examples/rust/extend_viewer_ui/Cargo.toml | 2 +- examples/rust/external_data_loader/Cargo.toml | 2 +- examples/rust/graph_lattice/Cargo.toml | 2 +- examples/rust/incremental_logging/Cargo.toml | 2 +- examples/rust/log_file/Cargo.toml | 2 +- examples/rust/minimal/Cargo.toml | 2 +- examples/rust/minimal_options/Cargo.toml | 2 +- examples/rust/minimal_serve/Cargo.toml | 2 +- examples/rust/objectron/Cargo.toml | 2 +- examples/rust/raw_mesh/Cargo.toml | 2 +- examples/rust/shared_recording/Cargo.toml | 2 +- examples/rust/spawn_viewer/Cargo.toml | 2 +- examples/rust/stdio/Cargo.toml | 2 +- examples/rust/template/Cargo.toml | 2 +- pixi.lock | 10 +- rerun_cpp/src/rerun/c/sdk_info.h | 4 +- rerun_js/web-viewer-react/README.md | 2 +- rerun_js/web-viewer-react/package.json | 4 +- rerun_js/web-viewer/README.md | 2 +- rerun_js/web-viewer/package.json | 2 +- rerun_notebook/pyproject.toml | 2 +- rerun_py/pyproject.toml | 2 +- rerun_py/rerun_sdk/rerun/__init__.py | 4 +- rerun_py/rerun_sdk/rerun/_log.py | 2 +- 40 files changed, 282 insertions(+), 262 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c276ebd48c22..0b3270affe16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,28 @@ # Rerun changelog -## [Unreleased](https://github.com/rerun-io/rerun/compare/0.21.0...HEAD) - Entity filter & improved partial update API -TODO(andreas): add link to release video +## [0.22.0](https://github.com/rerun-io/rerun/compare/0.21.0...0.22.0) - Entity filter & improved partial update API - 2025-02-06 -📖 Release blogpost: TODO(andreas): add link -🧳 Migration guide: https://rerun.io/docs/reference/migration/migration-0-22?speculative-link +The new entity filtering: + +https://github.com/user-attachments/assets/75ae114b-a55c-452e-9003-d8f447854d2a + +The new notification panel: + +![notification-panel](https://github.com/user-attachments/assets/0fb651d7-256a-48d7-a78e-81776ec39ba8) + +Copy any view as screenshot with right-click (now works in web-viewer): + +![image](https://github.com/user-attachments/assets/bf36ee0b-2f64-473e-af48-dfd22c887b9c) + +New help texts for all our views: + +![image](https://github.com/user-attachments/assets/8b2546c7-c54f-4c25-8b82-fd9abdc6c31e) + +📖 Release blogpost: https://rerun.io/blog/graphs + +🧳 Migration guide: https://rerun.io/docs/reference/migration/migration-0-22 ### ✨ Overview & highlights @@ -14,19 +30,23 @@ TODO(andreas): add link to release video * 🔎 Added entity filtering/searching * 🔔 Recent notifications show now in a dedicated panel * 🖱️ Entity ranges can now be selected with shift + click +* ❓ Improved panel help +* 🖼️ Crisper UI rendering +* 🧊 Faster 3D transforms #### APIs -* 🔄 [Much easier partial updates of archetypes](https://rerun.io/docs/howto/logging/send-partial-updates?speculative-link) -* 📊 [Greatly improved ease of use of `send_columns`](https://rerun.io/docs/howto/logging/send-columns?speculative-link) -* ⏱️ Python notebooks & JS can now control the timeline with `set_time_ctrl` TODO(#8894): link to the api/an example -* 📝 Lots of [new snippets](https://github.com/rerun-io/rerun/blob/0.22.0/docs/snippets/INDEX.md?speculative-link) for demonstrating partial updates & custom data logging in Python/C++/Rust +* 🔄 [Much easier partial updates of archetypes](https://rerun.io/docs/howto/logging/send-partial-updates) +* 📊 [Greatly improved ease of use of `send_columns`](https://rerun.io/docs/howto/logging/send-columns) +* ⏱️ Python notebooks & JS can now control the timeline and panel states (see last section of [this notebook](https://github.com/rerun-io/rerun/blob/release-0.22.0/examples/python/notebook/cube.ipynb)) +* 📝 Lots of [new snippets](https://github.com/rerun-io/rerun/blob/0.22.0/docs/snippets/INDEX.md) for demonstrating partial updates & custom data logging in Python/C++/Rust The API & related under-the-hood changes pave the way for better support for multiple archetypes on the same entity and components with generic types in future releases. Stay tuned! ### ⚠️ Breaking changes -TODO(andreas): fill in -🧳 Migration guide: https://rerun.io/docs/reference/migration/migration-0-22?speculative-link +Passing raw batches of components is no longer supported. Instead, use the partial update APIs (or in rare cases, explicitly serialize the components). + +Check the [🧳 Migration guide](https://rerun.io/docs/reference/migration/migration-0-22) for before/after snippets for all languages for this and other smaller breaking changes. ### 🔎 Details @@ -311,6 +331,7 @@ Read our 🧳 migration guide for more detailed information: https://rerun.io/do - Clean up pass over all superfluous hashing happening on the query path [#8207](https://github.com/rerun-io/rerun/pull/8207) - Improve performance of time panel [#8224](https://github.com/rerun-io/rerun/pull/8224) + ## [0.20.3](https://github.com/rerun-io/rerun/compare/0.20.2...0.20.3) - Web viewer fix ### 🔎 Details @@ -318,6 +339,7 @@ Read our 🧳 migration guide for more detailed information: https://rerun.io/do #### 🪳 Bug fixes - Fix web viewer feature flags [#8295](https://github.com/rerun-io/rerun/pull/8295) + ## [0.20.2](https://github.com/rerun-io/rerun/compare/0.20.1...0.20.2) - Build fix ### 🔎 Details diff --git a/Cargo.lock b/Cargo.lock index 6dc021222107..c19e19c8fa00 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1390,7 +1390,7 @@ dependencies = [ [[package]] name = "clock" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -1733,7 +1733,7 @@ checksum = "96a6ac251f4a2aca6b3f91340350eab87ae57c3f127ffeb585e92bd336717991" [[package]] name = "custom_callback" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "bincode", "mimalloc", @@ -1747,7 +1747,7 @@ dependencies = [ [[package]] name = "custom_data_loader" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "re_build_tools", "rerun", @@ -1755,7 +1755,7 @@ dependencies = [ [[package]] name = "custom_store_subscriber" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "re_build_tools", "rerun", @@ -1763,7 +1763,7 @@ dependencies = [ [[package]] name = "custom_view" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "mimalloc", "re_crash_handler", @@ -1819,7 +1819,7 @@ checksum = "5c297a1c74b71ae29df00c3e22dd9534821d60eb9af5a0192823fa2acea70c2a" [[package]] name = "dataframe_query" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "itertools 0.13.0", "rerun", @@ -1914,7 +1914,7 @@ dependencies = [ [[package]] name = "dna" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "itertools 0.13.0", "rand", @@ -2422,7 +2422,7 @@ dependencies = [ [[package]] name = "extend_viewer_ui" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "mimalloc", "re_crash_handler", @@ -2955,7 +2955,7 @@ dependencies = [ [[package]] name = "graph_lattice" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -3550,7 +3550,7 @@ dependencies = [ [[package]] name = "incremental_logging" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -4004,7 +4004,7 @@ dependencies = [ [[package]] name = "log_benchmark" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -4015,7 +4015,7 @@ dependencies = [ [[package]] name = "log_file" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -4193,14 +4193,14 @@ dependencies = [ [[package]] name = "minimal" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "rerun", ] [[package]] name = "minimal_options" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -4210,7 +4210,7 @@ dependencies = [ [[package]] name = "minimal_serve" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "rerun", ] @@ -4812,7 +4812,7 @@ dependencies = [ [[package]] name = "objectron" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -5120,7 +5120,7 @@ dependencies = [ [[package]] name = "plot_dashboard_stress" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -5625,7 +5625,7 @@ checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539" [[package]] name = "raw_mesh" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "bytes", @@ -5668,7 +5668,7 @@ checksum = "3b42e27ef78c35d3998403c1d26f3efd9e135d3e5121b0a4845cc5cc27547f4f" [[package]] name = "re_analytics" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "crossbeam", "directories", @@ -5715,7 +5715,7 @@ dependencies = [ [[package]] name = "re_arrow_util" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "arrow", "itertools 0.13.0", @@ -5725,7 +5725,7 @@ dependencies = [ [[package]] name = "re_auth" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "base64 0.22.1", "jsonwebtoken", @@ -5738,7 +5738,7 @@ dependencies = [ [[package]] name = "re_blueprint_tree" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "egui", "egui_kittest", @@ -5763,7 +5763,7 @@ dependencies = [ [[package]] name = "re_build_info" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "re_byte_size", "serde", @@ -5771,7 +5771,7 @@ dependencies = [ [[package]] name = "re_build_tools" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "cargo_metadata 0.18.1", @@ -5784,7 +5784,7 @@ dependencies = [ [[package]] name = "re_byte_size" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "arrow", "half", @@ -5793,7 +5793,7 @@ dependencies = [ [[package]] name = "re_capabilities" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "document-features", "egui", @@ -5802,14 +5802,14 @@ dependencies = [ [[package]] name = "re_case" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "convert_case", ] [[package]] name = "re_chunk" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "ahash", "anyhow", @@ -5840,7 +5840,7 @@ dependencies = [ [[package]] name = "re_chunk_store" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "ahash", "anyhow", @@ -5875,7 +5875,7 @@ dependencies = [ [[package]] name = "re_chunk_store_ui" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "arrow", "egui", @@ -5892,7 +5892,7 @@ dependencies = [ [[package]] name = "re_component_ui" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "arrow", "egui", @@ -5915,7 +5915,7 @@ dependencies = [ [[package]] name = "re_context_menu" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "egui", "egui_tiles", @@ -5936,7 +5936,7 @@ dependencies = [ [[package]] name = "re_crash_handler" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "backtrace", "econtext", @@ -5949,7 +5949,7 @@ dependencies = [ [[package]] name = "re_data_loader" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "ahash", "anyhow", @@ -5983,7 +5983,7 @@ dependencies = [ [[package]] name = "re_data_source" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "itertools 0.13.0", @@ -6001,7 +6001,7 @@ dependencies = [ [[package]] name = "re_data_ui" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "ahash", "anyhow", @@ -6032,7 +6032,7 @@ dependencies = [ [[package]] name = "re_dataframe" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "arrow", @@ -6059,7 +6059,7 @@ dependencies = [ [[package]] name = "re_dev_tools" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "argh", @@ -6086,7 +6086,7 @@ dependencies = [ [[package]] name = "re_entity_db" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "ahash", "anyhow", @@ -6120,21 +6120,21 @@ dependencies = [ [[package]] name = "re_error" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", ] [[package]] name = "re_format" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "num-traits", ] [[package]] name = "re_format_arrow" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "arrow", "comfy-table", @@ -6146,7 +6146,7 @@ dependencies = [ [[package]] name = "re_grpc_client" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "arrow", "async-stream", @@ -6170,7 +6170,7 @@ dependencies = [ [[package]] name = "re_grpc_server" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "re_build_info", "re_byte_size", @@ -6193,7 +6193,7 @@ dependencies = [ [[package]] name = "re_int_histogram" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "criterion", "insta", @@ -6204,7 +6204,7 @@ dependencies = [ [[package]] name = "re_log" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "env_logger", "js-sys", @@ -6217,7 +6217,7 @@ dependencies = [ [[package]] name = "re_log_encoding" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "arrow", "bytes", @@ -6250,7 +6250,7 @@ dependencies = [ [[package]] name = "re_log_types" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "ahash", "anyhow", @@ -6301,7 +6301,7 @@ dependencies = [ [[package]] name = "re_memory" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "ahash", "backtrace", @@ -6336,7 +6336,7 @@ dependencies = [ [[package]] name = "re_protos" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "arrow", "prost", @@ -6352,7 +6352,7 @@ dependencies = [ [[package]] name = "re_protos_builder" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "camino", "prost-build", @@ -6362,7 +6362,7 @@ dependencies = [ [[package]] name = "re_query" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "ahash", "anyhow", @@ -6418,7 +6418,7 @@ dependencies = [ [[package]] name = "re_renderer" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "ahash", "anyhow", @@ -6469,7 +6469,7 @@ dependencies = [ [[package]] name = "re_renderer_examples" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "ahash", "anyhow", @@ -6493,7 +6493,7 @@ dependencies = [ [[package]] name = "re_sdk" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "ahash", "crossbeam", @@ -6529,7 +6529,7 @@ dependencies = [ [[package]] name = "re_sdk_comms" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "ahash", "crossbeam", @@ -6545,7 +6545,7 @@ dependencies = [ [[package]] name = "re_selection_panel" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "arrow", "egui", @@ -6573,7 +6573,7 @@ dependencies = [ [[package]] name = "re_smart_channel" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "crossbeam", "parking_lot", @@ -6584,7 +6584,7 @@ dependencies = [ [[package]] name = "re_sorbet" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "arrow", "re_log", @@ -6595,7 +6595,7 @@ dependencies = [ [[package]] name = "re_string_interner" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "ahash", "nohash-hasher", @@ -6607,7 +6607,7 @@ dependencies = [ [[package]] name = "re_time_panel" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "criterion", @@ -6638,7 +6638,7 @@ dependencies = [ [[package]] name = "re_tracing" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "puffin", "puffin_http", @@ -6649,7 +6649,7 @@ dependencies = [ [[package]] name = "re_tuid" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "criterion", "document-features", @@ -6662,7 +6662,7 @@ dependencies = [ [[package]] name = "re_types" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "array-init", @@ -6705,7 +6705,7 @@ dependencies = [ [[package]] name = "re_types_builder" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "arrow", @@ -6736,7 +6736,7 @@ dependencies = [ [[package]] name = "re_types_core" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "arrow", @@ -6763,7 +6763,7 @@ dependencies = [ [[package]] name = "re_ui" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "ahash", "arrow", @@ -6797,7 +6797,7 @@ dependencies = [ [[package]] name = "re_video" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "bit-vec", "cfg_aliases", @@ -6825,7 +6825,7 @@ dependencies = [ [[package]] name = "re_view" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "ahash", "arrow", @@ -6849,7 +6849,7 @@ dependencies = [ [[package]] name = "re_view_bar_chart" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "egui", "egui_plot", @@ -6867,7 +6867,7 @@ dependencies = [ [[package]] name = "re_view_dataframe" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "arrow", @@ -6895,7 +6895,7 @@ dependencies = [ [[package]] name = "re_view_graph" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "ahash", "egui", @@ -6922,7 +6922,7 @@ dependencies = [ [[package]] name = "re_view_map" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "bytemuck", "egui", @@ -6946,7 +6946,7 @@ dependencies = [ [[package]] name = "re_view_spatial" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "ahash", "anyhow", @@ -6992,7 +6992,7 @@ dependencies = [ [[package]] name = "re_view_tensor" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "bytemuck", @@ -7016,7 +7016,7 @@ dependencies = [ [[package]] name = "re_view_text_document" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "egui", "egui_commonmark", @@ -7031,7 +7031,7 @@ dependencies = [ [[package]] name = "re_view_text_log" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "egui", "egui_extras", @@ -7051,7 +7051,7 @@ dependencies = [ [[package]] name = "re_view_time_series" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "egui", "egui_plot", @@ -7073,7 +7073,7 @@ dependencies = [ [[package]] name = "re_viewer" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "ahash", "anyhow", @@ -7151,7 +7151,7 @@ dependencies = [ [[package]] name = "re_viewer_context" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "ahash", "anyhow", @@ -7210,7 +7210,7 @@ dependencies = [ [[package]] name = "re_viewport" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "ahash", "egui", @@ -7232,7 +7232,7 @@ dependencies = [ [[package]] name = "re_viewport_blueprint" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "ahash", "arrow", @@ -7259,7 +7259,7 @@ dependencies = [ [[package]] name = "re_web_viewer_server" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "document-features", "re_analytics", @@ -7270,7 +7270,7 @@ dependencies = [ [[package]] name = "re_ws_comms" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "bincode", @@ -7467,7 +7467,7 @@ dependencies = [ [[package]] name = "rerun" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "arrow", @@ -7511,7 +7511,7 @@ dependencies = [ [[package]] name = "rerun-cli" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "document-features", "mimalloc", @@ -7526,7 +7526,7 @@ dependencies = [ [[package]] name = "rerun-loader-rust-file" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "argh", @@ -7535,7 +7535,7 @@ dependencies = [ [[package]] name = "rerun_c" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "ahash", "arrow", @@ -7551,7 +7551,7 @@ dependencies = [ [[package]] name = "rerun_py" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "arrow", "crossbeam", @@ -7686,7 +7686,7 @@ dependencies = [ [[package]] name = "roundtrip_annotation_context" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7696,7 +7696,7 @@ dependencies = [ [[package]] name = "roundtrip_arrows2d" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7706,7 +7706,7 @@ dependencies = [ [[package]] name = "roundtrip_arrows3d" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7716,7 +7716,7 @@ dependencies = [ [[package]] name = "roundtrip_boxes2d" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7726,7 +7726,7 @@ dependencies = [ [[package]] name = "roundtrip_boxes3d" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7736,7 +7736,7 @@ dependencies = [ [[package]] name = "roundtrip_depth_image" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7747,7 +7747,7 @@ dependencies = [ [[package]] name = "roundtrip_image" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7760,7 +7760,7 @@ dependencies = [ [[package]] name = "roundtrip_line_strips2d" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7770,7 +7770,7 @@ dependencies = [ [[package]] name = "roundtrip_line_strips3d" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7780,7 +7780,7 @@ dependencies = [ [[package]] name = "roundtrip_pinhole" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7790,7 +7790,7 @@ dependencies = [ [[package]] name = "roundtrip_points2d" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7800,7 +7800,7 @@ dependencies = [ [[package]] name = "roundtrip_points3d" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7810,7 +7810,7 @@ dependencies = [ [[package]] name = "roundtrip_segmentation_image" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7821,7 +7821,7 @@ dependencies = [ [[package]] name = "roundtrip_tensor" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7832,7 +7832,7 @@ dependencies = [ [[package]] name = "roundtrip_text_document" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7842,7 +7842,7 @@ dependencies = [ [[package]] name = "roundtrip_text_log" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7852,7 +7852,7 @@ dependencies = [ [[package]] name = "roundtrip_transform3d" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7862,7 +7862,7 @@ dependencies = [ [[package]] name = "roundtrip_view_coordinates" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7872,7 +7872,7 @@ dependencies = [ [[package]] name = "roundtrip_visible_time_ranges" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7888,7 +7888,7 @@ checksum = "3cd14fd5e3b777a7422cca79358c57a8f6e3a703d9ac187448d0daf220c2407f" [[package]] name = "run_wasm" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "cargo-run-wasm", "pico-args", @@ -8280,7 +8280,7 @@ dependencies = [ [[package]] name = "shared_recording" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "rerun", ] @@ -8465,7 +8465,7 @@ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b" [[package]] name = "snippets" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "itertools 0.13.0", "ndarray", @@ -8489,7 +8489,7 @@ dependencies = [ [[package]] name = "spawn_viewer" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "rerun", ] @@ -8540,7 +8540,7 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" [[package]] name = "stdio" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "rerun", ] @@ -8723,7 +8723,7 @@ dependencies = [ [[package]] name = "template" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "rerun", ] @@ -8739,7 +8739,7 @@ dependencies = [ [[package]] name = "test_api" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -8754,7 +8754,7 @@ dependencies = [ [[package]] name = "test_data_density_graph" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "rand", @@ -8764,7 +8764,7 @@ dependencies = [ [[package]] name = "test_image_memory" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "mimalloc", "re_format", @@ -8773,7 +8773,7 @@ dependencies = [ [[package]] name = "test_pinhole_projection" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -8784,7 +8784,7 @@ dependencies = [ [[package]] name = "test_send_columns" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "re_chunk", "rerun", @@ -8792,7 +8792,7 @@ dependencies = [ [[package]] name = "test_ui_wakeup" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index bf7d88024cdb..ed2b733cde89 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,7 +31,7 @@ include = [ license = "MIT OR Apache-2.0" repository = "https://github.com/rerun-io/rerun" rust-version = "1.81" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" [workspace.dependencies] # When using alpha-release, always use exact version, e.g. `version = "=0.x.y-alpha.z" @@ -40,81 +40,81 @@ version = "0.22.0-alpha.3+dev" # re_log_types 0.3.0-alpha.0, NOT 0.3.0-alpha.4 even though it is newer and semver-compatible. # crates/build: -re_build_info = { path = "crates/build/re_build_info", version = "=0.22.0-alpha.3", default-features = false } -re_build_tools = { path = "crates/build/re_build_tools", version = "=0.22.0-alpha.3", default-features = false } -re_dev_tools = { path = "crates/build/re_dev_tools", version = "=0.22.0-alpha.3", default-features = false } -re_protos_builder = { path = "crates/build/re_protos_builder", version = "=0.22.0-alpha.3", default-features = false } -re_types_builder = { path = "crates/build/re_types_builder", version = "=0.22.0-alpha.3", default-features = false } +re_build_info = { path = "crates/build/re_build_info", version = "=0.23.0-alpha.1", default-features = false } +re_build_tools = { path = "crates/build/re_build_tools", version = "=0.23.0-alpha.1", default-features = false } +re_dev_tools = { path = "crates/build/re_dev_tools", version = "=0.23.0-alpha.1", default-features = false } +re_protos_builder = { path = "crates/build/re_protos_builder", version = "=0.23.0-alpha.1", default-features = false } +re_types_builder = { path = "crates/build/re_types_builder", version = "=0.23.0-alpha.1", default-features = false } # crates/store: -re_chunk = { path = "crates/store/re_chunk", version = "=0.22.0-alpha.3", default-features = false } -re_chunk_store = { path = "crates/store/re_chunk_store", version = "=0.22.0-alpha.3", default-features = false } -re_data_loader = { path = "crates/store/re_data_loader", version = "=0.22.0-alpha.3", default-features = false } -re_data_source = { path = "crates/store/re_data_source", version = "=0.22.0-alpha.3", default-features = false } -re_dataframe = { path = "crates/store/re_dataframe", version = "=0.22.0-alpha.3", default-features = false } -re_entity_db = { path = "crates/store/re_entity_db", version = "=0.22.0-alpha.3", default-features = false } -re_format_arrow = { path = "crates/store/re_format_arrow", version = "=0.22.0-alpha.3", default-features = false } -re_grpc_client = { path = "crates/store/re_grpc_client", version = "=0.22.0-alpha.3", default-features = false } -re_protos = { path = "crates/store/re_protos", version = "=0.22.0-alpha.3", default-features = false } -re_log_encoding = { path = "crates/store/re_log_encoding", version = "=0.22.0-alpha.3", default-features = false } -re_log_types = { path = "crates/store/re_log_types", version = "=0.22.0-alpha.3", default-features = false } -re_query = { path = "crates/store/re_query", version = "=0.22.0-alpha.3", default-features = false } -re_sdk_comms = { path = "crates/store/re_sdk_comms", version = "=0.22.0-alpha.3", default-features = false } -re_sorbet = { path = "crates/store/re_sorbet", version = "=0.22.0-alpha.3", default-features = false } -re_types = { path = "crates/store/re_types", version = "=0.22.0-alpha.3", default-features = false } -re_types_core = { path = "crates/store/re_types_core", version = "=0.22.0-alpha.3", default-features = false } -re_ws_comms = { path = "crates/store/re_ws_comms", version = "=0.22.0-alpha.3", default-features = false } +re_chunk = { path = "crates/store/re_chunk", version = "=0.23.0-alpha.1", default-features = false } +re_chunk_store = { path = "crates/store/re_chunk_store", version = "=0.23.0-alpha.1", default-features = false } +re_data_loader = { path = "crates/store/re_data_loader", version = "=0.23.0-alpha.1", default-features = false } +re_data_source = { path = "crates/store/re_data_source", version = "=0.23.0-alpha.1", default-features = false } +re_dataframe = { path = "crates/store/re_dataframe", version = "=0.23.0-alpha.1", default-features = false } +re_entity_db = { path = "crates/store/re_entity_db", version = "=0.23.0-alpha.1", default-features = false } +re_format_arrow = { path = "crates/store/re_format_arrow", version = "=0.23.0-alpha.1", default-features = false } +re_grpc_client = { path = "crates/store/re_grpc_client", version = "=0.23.0-alpha.1", default-features = false } +re_protos = { path = "crates/store/re_protos", version = "=0.23.0-alpha.1", default-features = false } +re_log_encoding = { path = "crates/store/re_log_encoding", version = "=0.23.0-alpha.1", default-features = false } +re_log_types = { path = "crates/store/re_log_types", version = "=0.23.0-alpha.1", default-features = false } +re_query = { path = "crates/store/re_query", version = "=0.23.0-alpha.1", default-features = false } +re_sdk_comms = { path = "crates/store/re_sdk_comms", version = "=0.23.0-alpha.1", default-features = false } +re_sorbet = { path = "crates/store/re_sorbet", version = "=0.23.0-alpha.1", default-features = false } +re_types = { path = "crates/store/re_types", version = "=0.23.0-alpha.1", default-features = false } +re_types_core = { path = "crates/store/re_types_core", version = "=0.23.0-alpha.1", default-features = false } +re_ws_comms = { path = "crates/store/re_ws_comms", version = "=0.23.0-alpha.1", default-features = false } # crates/top: -re_sdk = { path = "crates/top/re_sdk", version = "=0.22.0-alpha.3", default-features = false } -rerun = { path = "crates/top/rerun", version = "=0.22.0-alpha.3", default-features = false } -rerun_c = { path = "crates/top/rerun_c", version = "=0.22.0-alpha.3", default-features = false } -rerun-cli = { path = "crates/top/rerun-cli", version = "=0.22.0-alpha.3", default-features = false } +re_sdk = { path = "crates/top/re_sdk", version = "=0.23.0-alpha.1", default-features = false } +rerun = { path = "crates/top/rerun", version = "=0.23.0-alpha.1", default-features = false } +rerun_c = { path = "crates/top/rerun_c", version = "=0.23.0-alpha.1", default-features = false } +rerun-cli = { path = "crates/top/rerun-cli", version = "=0.23.0-alpha.1", default-features = false } # crates/utils: -re_analytics = { path = "crates/utils/re_analytics", version = "=0.22.0-alpha.3", default-features = false } -re_arrow_util = { path = "crates/utils/re_arrow_util", version = "=0.22.0-alpha.3", default-features = false } -re_byte_size = { path = "crates/utils/re_byte_size", version = "=0.22.0-alpha.3", default-features = false } -re_capabilities = { path = "crates/utils/re_capabilities", version = "=0.22.0-alpha.3", default-features = false } -re_case = { path = "crates/utils/re_case", version = "=0.22.0-alpha.3", default-features = false } -re_crash_handler = { path = "crates/utils/re_crash_handler", version = "=0.22.0-alpha.3", default-features = false } -re_error = { path = "crates/utils/re_error", version = "=0.22.0-alpha.3", default-features = false } -re_format = { path = "crates/utils/re_format", version = "=0.22.0-alpha.3", default-features = false } -re_int_histogram = { path = "crates/utils/re_int_histogram", version = "=0.22.0-alpha.3", default-features = false } -re_log = { path = "crates/utils/re_log", version = "=0.22.0-alpha.3", default-features = false } -re_memory = { path = "crates/utils/re_memory", version = "=0.22.0-alpha.3", default-features = false } -re_smart_channel = { path = "crates/utils/re_smart_channel", version = "=0.22.0-alpha.3", default-features = false } -re_string_interner = { path = "crates/utils/re_string_interner", version = "=0.22.0-alpha.3", default-features = false } -re_tracing = { path = "crates/utils/re_tracing", version = "=0.22.0-alpha.3", default-features = false } -re_tuid = { path = "crates/utils/re_tuid", version = "=0.22.0-alpha.3", default-features = false } -re_video = { path = "crates/utils/re_video", version = "=0.22.0-alpha.3", default-features = false } +re_analytics = { path = "crates/utils/re_analytics", version = "=0.23.0-alpha.1", default-features = false } +re_arrow_util = { path = "crates/utils/re_arrow_util", version = "=0.23.0-alpha.1", default-features = false } +re_byte_size = { path = "crates/utils/re_byte_size", version = "=0.23.0-alpha.1", default-features = false } +re_capabilities = { path = "crates/utils/re_capabilities", version = "=0.23.0-alpha.1", default-features = false } +re_case = { path = "crates/utils/re_case", version = "=0.23.0-alpha.1", default-features = false } +re_crash_handler = { path = "crates/utils/re_crash_handler", version = "=0.23.0-alpha.1", default-features = false } +re_error = { path = "crates/utils/re_error", version = "=0.23.0-alpha.1", default-features = false } +re_format = { path = "crates/utils/re_format", version = "=0.23.0-alpha.1", default-features = false } +re_int_histogram = { path = "crates/utils/re_int_histogram", version = "=0.23.0-alpha.1", default-features = false } +re_log = { path = "crates/utils/re_log", version = "=0.23.0-alpha.1", default-features = false } +re_memory = { path = "crates/utils/re_memory", version = "=0.23.0-alpha.1", default-features = false } +re_smart_channel = { path = "crates/utils/re_smart_channel", version = "=0.23.0-alpha.1", default-features = false } +re_string_interner = { path = "crates/utils/re_string_interner", version = "=0.23.0-alpha.1", default-features = false } +re_tracing = { path = "crates/utils/re_tracing", version = "=0.23.0-alpha.1", default-features = false } +re_tuid = { path = "crates/utils/re_tuid", version = "=0.23.0-alpha.1", default-features = false } +re_video = { path = "crates/utils/re_video", version = "=0.23.0-alpha.1", default-features = false } # crates/viewer: -re_blueprint_tree = { path = "crates/viewer/re_blueprint_tree", version = "=0.22.0-alpha.3", default-features = false } -re_component_ui = { path = "crates/viewer/re_component_ui", version = "=0.22.0-alpha.3", default-features = false } -re_context_menu = { path = "crates/viewer/re_context_menu", version = "=0.22.0-alpha.3", default-features = false } -re_data_ui = { path = "crates/viewer/re_data_ui", version = "=0.22.0-alpha.3", default-features = false } -re_chunk_store_ui = { path = "crates/viewer/re_chunk_store_ui", version = "=0.22.0-alpha.3", default-features = false } -re_renderer = { path = "crates/viewer/re_renderer", version = "=0.22.0-alpha.3", default-features = false } -re_renderer_examples = { path = "crates/viewer/re_renderer_examples", version = "=0.22.0-alpha.3", default-features = false } -re_selection_panel = { path = "crates/viewer/re_selection_panel", version = "=0.22.0-alpha.3", default-features = false } -re_view = { path = "crates/viewer/re_view", version = "=0.22.0-alpha.3", default-features = false } -re_view_bar_chart = { path = "crates/viewer/re_view_bar_chart", version = "=0.22.0-alpha.3", default-features = false } -re_view_spatial = { path = "crates/viewer/re_view_spatial", version = "=0.22.0-alpha.3", default-features = false } -re_view_dataframe = { path = "crates/viewer/re_view_dataframe", version = "=0.22.0-alpha.3", default-features = false } -re_view_graph = { path = "crates/viewer/re_view_graph", version = "=0.22.0-alpha.3", default-features = false } -re_view_map = { path = "crates/viewer/re_view_map", version = "=0.22.0-alpha.3", default-features = false } -re_view_tensor = { path = "crates/viewer/re_view_tensor", version = "=0.22.0-alpha.3", default-features = false } -re_view_text_document = { path = "crates/viewer/re_view_text_document", version = "=0.22.0-alpha.3", default-features = false } -re_view_text_log = { path = "crates/viewer/re_view_text_log", version = "=0.22.0-alpha.3", default-features = false } -re_view_time_series = { path = "crates/viewer/re_view_time_series", version = "=0.22.0-alpha.3", default-features = false } -re_time_panel = { path = "crates/viewer/re_time_panel", version = "=0.22.0-alpha.3", default-features = false } -re_ui = { path = "crates/viewer/re_ui", version = "=0.22.0-alpha.3", default-features = false } -re_viewer = { path = "crates/viewer/re_viewer", version = "=0.22.0-alpha.3", default-features = false } -re_viewer_context = { path = "crates/viewer/re_viewer_context", version = "=0.22.0-alpha.3", default-features = false } -re_viewport = { path = "crates/viewer/re_viewport", version = "=0.22.0-alpha.3", default-features = false } -re_viewport_blueprint = { path = "crates/viewer/re_viewport_blueprint", version = "=0.22.0-alpha.3", default-features = false } -re_web_viewer_server = { path = "crates/viewer/re_web_viewer_server", version = "=0.22.0-alpha.3", default-features = false } +re_blueprint_tree = { path = "crates/viewer/re_blueprint_tree", version = "=0.23.0-alpha.1", default-features = false } +re_component_ui = { path = "crates/viewer/re_component_ui", version = "=0.23.0-alpha.1", default-features = false } +re_context_menu = { path = "crates/viewer/re_context_menu", version = "=0.23.0-alpha.1", default-features = false } +re_data_ui = { path = "crates/viewer/re_data_ui", version = "=0.23.0-alpha.1", default-features = false } +re_chunk_store_ui = { path = "crates/viewer/re_chunk_store_ui", version = "=0.23.0-alpha.1", default-features = false } +re_renderer = { path = "crates/viewer/re_renderer", version = "=0.23.0-alpha.1", default-features = false } +re_renderer_examples = { path = "crates/viewer/re_renderer_examples", version = "=0.23.0-alpha.1", default-features = false } +re_selection_panel = { path = "crates/viewer/re_selection_panel", version = "=0.23.0-alpha.1", default-features = false } +re_view = { path = "crates/viewer/re_view", version = "=0.23.0-alpha.1", default-features = false } +re_view_bar_chart = { path = "crates/viewer/re_view_bar_chart", version = "=0.23.0-alpha.1", default-features = false } +re_view_spatial = { path = "crates/viewer/re_view_spatial", version = "=0.23.0-alpha.1", default-features = false } +re_view_dataframe = { path = "crates/viewer/re_view_dataframe", version = "=0.23.0-alpha.1", default-features = false } +re_view_graph = { path = "crates/viewer/re_view_graph", version = "=0.23.0-alpha.1", default-features = false } +re_view_map = { path = "crates/viewer/re_view_map", version = "=0.23.0-alpha.1", default-features = false } +re_view_tensor = { path = "crates/viewer/re_view_tensor", version = "=0.23.0-alpha.1", default-features = false } +re_view_text_document = { path = "crates/viewer/re_view_text_document", version = "=0.23.0-alpha.1", default-features = false } +re_view_text_log = { path = "crates/viewer/re_view_text_log", version = "=0.23.0-alpha.1", default-features = false } +re_view_time_series = { path = "crates/viewer/re_view_time_series", version = "=0.23.0-alpha.1", default-features = false } +re_time_panel = { path = "crates/viewer/re_time_panel", version = "=0.23.0-alpha.1", default-features = false } +re_ui = { path = "crates/viewer/re_ui", version = "=0.23.0-alpha.1", default-features = false } +re_viewer = { path = "crates/viewer/re_viewer", version = "=0.23.0-alpha.1", default-features = false } +re_viewer_context = { path = "crates/viewer/re_viewer_context", version = "=0.23.0-alpha.1", default-features = false } +re_viewport = { path = "crates/viewer/re_viewport", version = "=0.23.0-alpha.1", default-features = false } +re_viewport_blueprint = { path = "crates/viewer/re_viewport_blueprint", version = "=0.23.0-alpha.1", default-features = false } +re_web_viewer_server = { path = "crates/viewer/re_web_viewer_server", version = "=0.23.0-alpha.1", default-features = false } # Rerun crates in other repos: ewebsock = "0.8.0" diff --git a/crates/store/re_grpc_server/README.md b/crates/store/re_grpc_server/README.md index 3e60ed9287d0..137ee18013cd 100644 --- a/crates/store/re_grpc_server/README.md +++ b/crates/store/re_grpc_server/README.md @@ -2,8 +2,8 @@ Part of the [`rerun`](https://github.com/rerun-io/rerun) family of crates. -[![Latest version](https://img.shields.io/crates/v/re_grpc_server.svg?speculative-link)](https://crates.io/crates/re_grpc_server?speculative-link) -[![Documentation](https://docs.rs/re_grpc_server/badge.svg?speculative-link)](https://docs.rs/re_grpc_server?speculative-link) +[![Latest version](https://img.shields.io/crates/v/re_grpc_server.svg)](https://crates.io/crates/re_grpc_server) +[![Documentation](https://docs.rs/re_grpc_server/badge.svg)](https://docs.rs/re_grpc_server) ![MIT](https://img.shields.io/badge/license-MIT-blue.svg) ![Apache](https://img.shields.io/badge/license-Apache-blue.svg) diff --git a/crates/store/re_sorbet/README.md b/crates/store/re_sorbet/README.md index 5864e0eeaf46..915b444f077f 100644 --- a/crates/store/re_sorbet/README.md +++ b/crates/store/re_sorbet/README.md @@ -2,8 +2,8 @@ Part of the [`rerun`](https://github.com/rerun-io/rerun) family of crates. -[![Latest version](https://img.shields.io/crates/v/re_sorbet.svg)](https://crates.io/crates/store/re_sorbet?speculative-link) -[![Documentation](https://docs.rs/re_sorbet/badge.svg)](https://docs.rs/re_sorbet?speculative-link) +[![Latest version](https://img.shields.io/crates/v/re_sorbet.svg)](https://crates.io/crates/store/re_sorbet) +[![Documentation](https://docs.rs/re_sorbet/badge.svg)](https://docs.rs/re_sorbet) ![MIT](https://img.shields.io/badge/license-MIT-blue.svg) ![Apache](https://img.shields.io/badge/license-Apache-blue.svg) diff --git a/crates/utils/re_arrow_util/README.md b/crates/utils/re_arrow_util/README.md index 6508f218a3ad..18ab1641abff 100644 --- a/crates/utils/re_arrow_util/README.md +++ b/crates/utils/re_arrow_util/README.md @@ -2,8 +2,8 @@ Part of the [`rerun`](https://github.com/rerun-io/rerun) family of crates. -[![Latest version](https://img.shields.io/crates/v/re_arrow_util.svg)](https://crates.io/crates/re_arrow_util?speculative-link) -[![Documentation](https://docs.rs/re_arrow_util/badge.svg)](https://docs.rs/re_arrow_util?speculative-link) +[![Latest version](https://img.shields.io/crates/v/re_arrow_util.svg)](https://crates.io/crates/re_arrow_util) +[![Documentation](https://docs.rs/re_arrow_util/badge.svg)](https://docs.rs/re_arrow_util) ![MIT](https://img.shields.io/badge/license-MIT-blue.svg) ![Apache](https://img.shields.io/badge/license-Apache-blue.svg) diff --git a/crates/utils/re_auth/README.md b/crates/utils/re_auth/README.md index fea5eb144061..28364b36d0e4 100644 --- a/crates/utils/re_auth/README.md +++ b/crates/utils/re_auth/README.md @@ -2,8 +2,6 @@ Part of the [`rerun`](https://github.com/rerun-io/rerun) family of crates. -[![Latest version](https://img.shields.io/crates/v/re_auth.svg)](https://crates.io/crates/re_auth?speculative-link) -[![Documentation](https://docs.rs/re_auth/badge.svg)](https://docs.rs/re_auth?speculative-link) ![MIT](https://img.shields.io/badge/license-MIT-blue.svg) ![Apache](https://img.shields.io/badge/license-Apache-blue.svg) diff --git a/crates/utils/re_byte_size/README.md b/crates/utils/re_byte_size/README.md index f162264ac63f..2f43ad6f8622 100644 --- a/crates/utils/re_byte_size/README.md +++ b/crates/utils/re_byte_size/README.md @@ -2,8 +2,8 @@ Part of the [`rerun`](https://github.com/rerun-io/rerun) family of crates. -[![Latest version](https://img.shields.io/crates/v/re_byte_size.svg)](https://crates.io/crates/re_byte_size?speculative-link) -[![Documentation](https://docs.rs/re_byte_size/badge.svg)](https://docs.rs/re_byte_size?speculative-link) +[![Latest version](https://img.shields.io/crates/v/re_byte_size.svg)](https://crates.io/crates/re_byte_size) +[![Documentation](https://docs.rs/re_byte_size/badge.svg)](https://docs.rs/re_byte_size) ![MIT](https://img.shields.io/badge/license-MIT-blue.svg) ![Apache](https://img.shields.io/badge/license-Apache-blue.svg) diff --git a/docs/content/reference/migration/migration-0-22.md b/docs/content/reference/migration/migration-0-22.md index 9707512045a7..1454b765f6e0 100644 --- a/docs/content/reference/migration/migration-0-22.md +++ b/docs/content/reference/migration/migration-0-22.md @@ -61,8 +61,8 @@ rr.log("points", rr.Points3D.from_fields(clear_unset=True, positions=positions, ``` See also: -* [Example: Partial updates of a `Transform3D` archetype](../../../snippets/all/archetypes/transform3d_partial_updates.py) -* [Example: Partial updates of a `Mesh3D` archetype](../../../snippets/all/archetypes/mesh3d_partial_updates.py) +* [Example: Partial updates of a `Transform3D` archetype](https://github.com/rerun-io/rerun/blob/0.22.0/docs/snippets/all/archetypes/transform3d_partial_updates.py) +* [Example: Partial updates of a `Mesh3D` archetype](https://github.com/rerun-io/rerun/blob/0.22.0/docs/snippets/all/archetypes/mesh3d_partial_updates.py) #### Rust @@ -118,8 +118,8 @@ rec.log("points", &rerun::Points3D::clear_fields().with_positions(positions()).w ``` See also: -* [Example: Partial updates of a `Transform3D` archetype](../../../snippets/all/archetypes/transform3d_partial_updates.rs) -* [Example: Partial updates of a `Mesh3D` archetype](../../../snippets/all/archetypes/mesh3d_partial_updates.rs) +* [Example: Partial updates of a `Transform3D` archetype](https://github.com/rerun-io/rerun/blob/0.22.0/docs/snippets/all/archetypes/transform3d_partial_updates.rs) +* [Example: Partial updates of a `Mesh3D` archetype](https://github.com/rerun-io/rerun/blob/0.22.0/docs/snippets/all/archetypes/mesh3d_partial_updates.rs) #### C++ @@ -193,8 +193,8 @@ rec.log("points", rerun::Points3D::clear_fields().with_positions(positions).with ``` See also: -* [Example: Partial updates of a `Transform3D` archetype](../../../snippets/all/archetypes/transform3d_partial_updates.cpp) -* [Example: Partial updates of a `Mesh3D` archetype](../../../snippets/all/archetypes/mesh3d_partial_updates.cpp) +* [Example: Partial updates of a `Transform3D` archetype](https://github.com/rerun-io/rerun/blob/0.22.0/docs/snippets/all/archetypes/transform3d_partial_updates.cpp) +* [Example: Partial updates of a `Mesh3D` archetype](https://github.com/rerun-io/rerun/blob/0.22.0/docs/snippets/all/archetypes/mesh3d_partial_updates.cpp) ### Columnar updates @@ -272,9 +272,9 @@ rr.send_columns( ``` See also: -* [Example: Columnar updates of a `Scalar` archetype](../../../snippets/all/archetypes/scalar_column_updates.py) -* [Example: Columnar updates of a `Transform3D` archetype](../../../snippets/all/archetypes/transform3d_column_updates.py) -* [Example: Columnar updates of an `Image` archetype](../../../snippets/all/archetypes/image_column_updates.py) +* [Example: Columnar updates of a `Scalar` archetype](https://github.com/rerun-io/rerun/blob/0.22.0/docs/snippets/all/archetypes/scalar_column_updates.py) +* [Example: Columnar updates of a `Transform3D` archetype](https://github.com/rerun-io/rerun/blob/0.22.0/docs/snippets/all/archetypes/transform3d_column_updates.py) +* [Example: Columnar updates of an `Image` archetype](https://github.com/rerun-io/rerun/blob/0.22.0/docs/snippets/all/archetypes/image_column_updates.py) #### Rust @@ -307,9 +307,9 @@ rec.send_columns("points", [times], position.chain(color_and_radius))?; ``` See also: -* [Example: Columnar updates of a `Scalar` archetype](../../../snippets/all/archetypes/scalar_column_updates.rs) -* [Example: Columnar updates of a `Transform3D` archetype](../../../snippets/all/archetypes/transform3d_column_updates.rs) -* [Example: Columnar updates of an `Image` archetype](../../../snippets/all/archetypes/image_column_updates.rs) +* [Example: Columnar updates of a `Scalar` archetype](https://github.com/rerun-io/rerun/blob/0.22.0/docs/snippets/all/archetypes/scalar_column_updates.rs) +* [Example: Columnar updates of a `Transform3D` archetype](https://github.com/rerun-io/rerun/blob/0.22.0/docs/snippets/all/archetypes/transform3d_column_updates.rs) +* [Example: Columnar updates of an `Image` archetype](https://github.com/rerun-io/rerun/blob/0.22.0/docs/snippets/all/archetypes/image_column_updates.rs) #### C++ @@ -389,9 +389,9 @@ rec.send_columns("points", time_column, position, color_and_radius); ``` See also: -* [Example: Columnar updates of a `Scalar` archetype](../../../snippets/all/archetypes/scalar_column_updates.cpp) -* [Example: Columnar updates of a `Transform3D` archetype](../../../snippets/all/archetypes/transform3d_column_updates.cpp) -* [Example: Columnar updates of an `Image` archetype](../../../snippets/all/archetypes/image_column_updates.cpp) +* [Example: Columnar updates of a `Scalar` archetype](https://github.com/rerun-io/rerun/blob/0.22.0/docs/snippets/all/archetypes/scalar_column_updates.cpp) +* [Example: Columnar updates of a `Transform3D` archetype](https://github.com/rerun-io/rerun/blob/0.22.0/docs/snippets/all/archetypes/transform3d_column_updates.cpp) +* [Example: Columnar updates of an `Image` archetype](https://github.com/rerun-io/rerun/blob/0.22.0/docs/snippets/all/archetypes/image_column_updates.cpp) @@ -447,7 +447,7 @@ rec.send_columns("scalars", time_column, rerun::Scalar().with_many_scalar(scalar_data).columns() ); ``` -All [example snippets](https://github.com/rerun-io/rerun/blob/0.22.0/docs/snippets/INDEX.md?speculative-link) have been updated accordingly. +All [example snippets](https://github.com/rerun-io/rerun/blob/0.22.0/docs/snippets/INDEX.md) have been updated accordingly. ## `AsComponents::serialize` is now called `AsComponents::as_batches` and returns `rerun::Collection` diff --git a/examples/rust/clock/Cargo.toml b/examples/rust/clock/Cargo.toml index 43d57582c7da..347cd1644097 100644 --- a/examples/rust/clock/Cargo.toml +++ b/examples/rust/clock/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clock" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" edition = "2021" rust-version = "1.81" license = "MIT OR Apache-2.0" diff --git a/examples/rust/custom_callback/Cargo.toml b/examples/rust/custom_callback/Cargo.toml index 2d11806e4f4e..e3a0f02364aa 100644 --- a/examples/rust/custom_callback/Cargo.toml +++ b/examples/rust/custom_callback/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "custom_callback" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" edition = "2021" rust-version = "1.81" license = "MIT OR Apache-2.0" diff --git a/examples/rust/custom_data_loader/Cargo.toml b/examples/rust/custom_data_loader/Cargo.toml index bfa1977eca8c..17c5443aac37 100644 --- a/examples/rust/custom_data_loader/Cargo.toml +++ b/examples/rust/custom_data_loader/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "custom_data_loader" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" edition = "2021" rust-version = "1.81" license = "MIT OR Apache-2.0" diff --git a/examples/rust/custom_store_subscriber/Cargo.toml b/examples/rust/custom_store_subscriber/Cargo.toml index e364858b7564..7c223a3976ef 100644 --- a/examples/rust/custom_store_subscriber/Cargo.toml +++ b/examples/rust/custom_store_subscriber/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "custom_store_subscriber" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" edition = "2021" rust-version = "1.81" license = "MIT OR Apache-2.0" diff --git a/examples/rust/custom_view/Cargo.toml b/examples/rust/custom_view/Cargo.toml index 533c65da82f2..1bc805ca1b42 100644 --- a/examples/rust/custom_view/Cargo.toml +++ b/examples/rust/custom_view/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "custom_view" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" edition = "2021" rust-version = "1.81" license = "MIT OR Apache-2.0" diff --git a/examples/rust/dataframe_query/Cargo.toml b/examples/rust/dataframe_query/Cargo.toml index 22ee33a6a22a..f90220d00d09 100644 --- a/examples/rust/dataframe_query/Cargo.toml +++ b/examples/rust/dataframe_query/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dataframe_query" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" edition = "2021" rust-version = "1.81" license = "MIT OR Apache-2.0" diff --git a/examples/rust/dna/Cargo.toml b/examples/rust/dna/Cargo.toml index 85c2145212c6..e94602af3e22 100644 --- a/examples/rust/dna/Cargo.toml +++ b/examples/rust/dna/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dna" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" edition = "2021" rust-version = "1.81" license = "MIT OR Apache-2.0" diff --git a/examples/rust/extend_viewer_ui/Cargo.toml b/examples/rust/extend_viewer_ui/Cargo.toml index f3a55cabb495..d9d971dddfb2 100644 --- a/examples/rust/extend_viewer_ui/Cargo.toml +++ b/examples/rust/extend_viewer_ui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "extend_viewer_ui" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" edition = "2021" rust-version = "1.81" license = "MIT OR Apache-2.0" diff --git a/examples/rust/external_data_loader/Cargo.toml b/examples/rust/external_data_loader/Cargo.toml index 14a48560fc42..4cc9237bf586 100644 --- a/examples/rust/external_data_loader/Cargo.toml +++ b/examples/rust/external_data_loader/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rerun-loader-rust-file" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" edition = "2021" rust-version = "1.81" license = "MIT OR Apache-2.0" diff --git a/examples/rust/graph_lattice/Cargo.toml b/examples/rust/graph_lattice/Cargo.toml index 2658ff8dd931..731db8c12166 100644 --- a/examples/rust/graph_lattice/Cargo.toml +++ b/examples/rust/graph_lattice/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graph_lattice" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" edition = "2021" rust-version = "1.81" license = "MIT OR Apache-2.0" diff --git a/examples/rust/incremental_logging/Cargo.toml b/examples/rust/incremental_logging/Cargo.toml index 6910dc11265f..17dabecf2adc 100644 --- a/examples/rust/incremental_logging/Cargo.toml +++ b/examples/rust/incremental_logging/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "incremental_logging" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" edition = "2021" rust-version = "1.81" license = "MIT OR Apache-2.0" diff --git a/examples/rust/log_file/Cargo.toml b/examples/rust/log_file/Cargo.toml index a9bd5d43d963..82e843127359 100644 --- a/examples/rust/log_file/Cargo.toml +++ b/examples/rust/log_file/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "log_file" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" edition = "2021" rust-version = "1.81" license = "MIT OR Apache-2.0" diff --git a/examples/rust/minimal/Cargo.toml b/examples/rust/minimal/Cargo.toml index 8c85ca983298..51f4a3d4dff2 100644 --- a/examples/rust/minimal/Cargo.toml +++ b/examples/rust/minimal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minimal" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" edition = "2021" rust-version = "1.81" license = "MIT OR Apache-2.0" diff --git a/examples/rust/minimal_options/Cargo.toml b/examples/rust/minimal_options/Cargo.toml index 98c812f72ac8..b6eee6041541 100644 --- a/examples/rust/minimal_options/Cargo.toml +++ b/examples/rust/minimal_options/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minimal_options" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" edition = "2021" rust-version = "1.81" license = "MIT OR Apache-2.0" diff --git a/examples/rust/minimal_serve/Cargo.toml b/examples/rust/minimal_serve/Cargo.toml index c6deda6468ce..425cb056468a 100644 --- a/examples/rust/minimal_serve/Cargo.toml +++ b/examples/rust/minimal_serve/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minimal_serve" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" edition = "2021" rust-version = "1.81" license = "MIT OR Apache-2.0" diff --git a/examples/rust/objectron/Cargo.toml b/examples/rust/objectron/Cargo.toml index 068bc4621ca9..854dd40d3810 100644 --- a/examples/rust/objectron/Cargo.toml +++ b/examples/rust/objectron/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "objectron" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" edition = "2021" rust-version = "1.81" license = "MIT OR Apache-2.0" diff --git a/examples/rust/raw_mesh/Cargo.toml b/examples/rust/raw_mesh/Cargo.toml index 67fd53d14872..437ce2fda304 100644 --- a/examples/rust/raw_mesh/Cargo.toml +++ b/examples/rust/raw_mesh/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "raw_mesh" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" edition = "2021" rust-version = "1.81" license = "MIT OR Apache-2.0" diff --git a/examples/rust/shared_recording/Cargo.toml b/examples/rust/shared_recording/Cargo.toml index e8d526a9505f..f10621e48b1e 100644 --- a/examples/rust/shared_recording/Cargo.toml +++ b/examples/rust/shared_recording/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shared_recording" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" edition = "2021" rust-version = "1.81" license = "MIT OR Apache-2.0" diff --git a/examples/rust/spawn_viewer/Cargo.toml b/examples/rust/spawn_viewer/Cargo.toml index 5c8290f88de3..9db0e9fdd0f0 100644 --- a/examples/rust/spawn_viewer/Cargo.toml +++ b/examples/rust/spawn_viewer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spawn_viewer" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" edition = "2021" rust-version = "1.81" license = "MIT OR Apache-2.0" diff --git a/examples/rust/stdio/Cargo.toml b/examples/rust/stdio/Cargo.toml index ed9bfe055da7..16a7761fe9fb 100644 --- a/examples/rust/stdio/Cargo.toml +++ b/examples/rust/stdio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stdio" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" edition = "2021" rust-version = "1.81" license = "MIT OR Apache-2.0" diff --git a/examples/rust/template/Cargo.toml b/examples/rust/template/Cargo.toml index baacee1ccf1e..65be099e8885 100644 --- a/examples/rust/template/Cargo.toml +++ b/examples/rust/template/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "template" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" edition = "2021" rust-version = "1.81" license = "MIT OR Apache-2.0" diff --git a/pixi.lock b/pixi.lock index f13f4ff1c565..7eb293fdaa0a 100644 --- a/pixi.lock +++ b/pixi.lock @@ -30289,8 +30289,8 @@ packages: - watchfiles ; extra == 'dev' - pypi: rerun_notebook name: rerun-notebook - version: 0.22.0a3+dev - sha256: c0e36b35b860358d5826140b1700a309af4df6cdf312227b019f7f185d8d54ab + version: 0.23.0a1+dev + sha256: 7deb8b26f0bf6a1498e5a246c59e909a0e465f8c95a358ae3bd45630710057d2 requires_dist: - anywidget - jupyter-ui-poll @@ -30365,8 +30365,8 @@ packages: requires_python: '>=3.8,<3.13' - pypi: rerun_py name: rerun-sdk - version: 0.22.0a3+dev - sha256: 120edb6775f5a808bfee119f0cab5c34e20ce8df4659b6720c09472406252d04 + version: 0.23.0a1+dev + sha256: 83b45b30cc640231c5c391186bdc885ddcb79a3f5fa182fabe4c456ff41e6ec9 requires_dist: - attrs>=23.1.0 - numpy>=1.23 @@ -30374,7 +30374,7 @@ packages: - pyarrow>=14.0.2 - typing-extensions>=4.5 - pytest==7.1.2 ; extra == 'tests' - - rerun-notebook==0.22.0a3+dev ; extra == 'notebook' + - rerun-notebook==0.23.0a1+dev ; extra == 'notebook' requires_python: '>=3.8' editable: true - pypi: https://files.pythonhosted.org/packages/7b/44/4e421b96b67b2daff264473f7465db72fbdf36a07e05494f50300cc7b0c6/rfc3339_validator-0.1.4-py2.py3-none-any.whl diff --git a/rerun_cpp/src/rerun/c/sdk_info.h b/rerun_cpp/src/rerun/c/sdk_info.h index f13916e39b3a..a054491b2564 100644 --- a/rerun_cpp/src/rerun/c/sdk_info.h +++ b/rerun_cpp/src/rerun/c/sdk_info.h @@ -2,13 +2,13 @@ /// /// This should match the string returned by `rr_version_string` (C) or `rerun::version_string` (C++). /// If not, the SDK's binary and the C header are out of sync. -#define RERUN_SDK_HEADER_VERSION "0.22.0-alpha.3+dev" +#define RERUN_SDK_HEADER_VERSION "0.23.0-alpha.1+dev" /// Major version of the Rerun C SDK. #define RERUN_SDK_HEADER_VERSION_MAJOR 0 /// Minor version of the Rerun C SDK. -#define RERUN_SDK_HEADER_VERSION_MINOR 22 +#define RERUN_SDK_HEADER_VERSION_MINOR 23 /// Patch version of the Rerun C SDK. #define RERUN_SDK_HEADER_VERSION_PATCH 0 diff --git a/rerun_js/web-viewer-react/README.md b/rerun_js/web-viewer-react/README.md index 35ad30d8be07..001985baa65f 100644 --- a/rerun_js/web-viewer-react/README.md +++ b/rerun_js/web-viewer-react/README.md @@ -35,7 +35,7 @@ export default function App() { ``` The `rrd` in the snippet above should be a URL pointing to either: -- A hosted `.rrd` file, such as +- A hosted `.rrd` file, such as - A WebSocket connection to the SDK opened via the [`serve`](https://www.rerun.io/docs/reference/sdk/operating-modes#serve) API If `rrd` is not set, the Viewer will display the same welcome screen as . diff --git a/rerun_js/web-viewer-react/package.json b/rerun_js/web-viewer-react/package.json index 22d05292794b..30d092c737e7 100644 --- a/rerun_js/web-viewer-react/package.json +++ b/rerun_js/web-viewer-react/package.json @@ -1,6 +1,6 @@ { "name": "@rerun-io/web-viewer-react", - "version": "0.22.0-alpha.3+dev", + "version": "0.23.0-alpha.1+dev", "description": "Embed the Rerun web viewer in your React app", "licenses": [ { @@ -39,7 +39,7 @@ "tsconfig.json" ], "dependencies": { - "@rerun-io/web-viewer": "0.22.0-alpha.3", + "@rerun-io/web-viewer": "0.23.0-alpha.1", "@types/react": "^18.2.33", "react": "^18.2.0" }, diff --git a/rerun_js/web-viewer/README.md b/rerun_js/web-viewer/README.md index db3bf4b413e2..26c92af1a7a9 100644 --- a/rerun_js/web-viewer/README.md +++ b/rerun_js/web-viewer/README.md @@ -41,7 +41,7 @@ viewer.stop(); ``` The `rrd` in the snippet above should be a URL pointing to either: -- A hosted `.rrd` file, such as +- A hosted `.rrd` file, such as - A WebSocket connection to the SDK opened via the [`serve`](https://www.rerun.io/docs/reference/sdk/operating-modes#serve) API If `rrd` is not set, the Viewer will display the same welcome screen as . diff --git a/rerun_js/web-viewer/package.json b/rerun_js/web-viewer/package.json index bf4da53dff46..3ce7106078bb 100644 --- a/rerun_js/web-viewer/package.json +++ b/rerun_js/web-viewer/package.json @@ -1,6 +1,6 @@ { "name": "@rerun-io/web-viewer", - "version": "0.22.0-alpha.3+dev", + "version": "0.23.0-alpha.1+dev", "description": "Embed the Rerun web viewer in your app", "licenses": [ { diff --git a/rerun_notebook/pyproject.toml b/rerun_notebook/pyproject.toml index 43666f64d7af..43a224586f99 100644 --- a/rerun_notebook/pyproject.toml +++ b/rerun_notebook/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "hatchling.build" [project] name = "rerun-notebook" description = "Implementation helper for running rerun-sdk in notebooks" -version = "0.22.0-alpha.3+dev" +version = "0.23.0-alpha.1+dev" dependencies = ["anywidget", "jupyter-ui-poll"] readme = "README.md" keywords = ["rerun", "notebook"] diff --git a/rerun_py/pyproject.toml b/rerun_py/pyproject.toml index 9ca3024b9336..dbf64e7ce90e 100644 --- a/rerun_py/pyproject.toml +++ b/rerun_py/pyproject.toml @@ -33,7 +33,7 @@ text = "MIT OR Apache-2.0" [project.optional-dependencies] tests = ["pytest==7.1.2"] -notebook = ["rerun-notebook==0.22.0-alpha.3+dev"] +notebook = ["rerun-notebook==0.23.0-alpha.1+dev"] [project.urls] documentation = "https://www.rerun.io/docs" diff --git a/rerun_py/rerun_sdk/rerun/__init__.py b/rerun_py/rerun_sdk/rerun/__init__.py index 4e37b7a1b2f6..29ec23326954 100644 --- a/rerun_py/rerun_sdk/rerun/__init__.py +++ b/rerun_py/rerun_sdk/rerun/__init__.py @@ -9,8 +9,8 @@ import numpy as np -__version__ = "0.22.0-alpha.3+dev" -__version_info__ = (0, 22, 0, "alpha.3") +__version__ = "0.23.0-alpha.1+dev" +__version_info__ = (0, 23, 0, "alpha.1") if sys.version_info < (3, 9): warnings.warn( diff --git a/rerun_py/rerun_sdk/rerun/_log.py b/rerun_py/rerun_sdk/rerun/_log.py index 3891d9a10e67..bac403522eb6 100644 --- a/rerun_py/rerun_sdk/rerun/_log.py +++ b/rerun_py/rerun_sdk/rerun/_log.py @@ -170,7 +170,7 @@ def log( @deprecated( """Use `log` with partial update APIs instead. - See: https://www.rerun.io/docs/reference/migration/migration-0-22?speculative-link for more details.""" + See: https://www.rerun.io/docs/reference/migration/migration-0-22 for more details.""" ) @catch_and_log_exceptions() def log_components(