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

Release 0.6.0 #2208

Closed
wants to merge 43 commits into from
Closed

Release 0.6.0 #2208

wants to merge 43 commits into from

Conversation

emilk
Copy link
Member

@emilk emilk commented May 25, 2023

Closes #2113

Release rerun 0.6.0 - 3D in 2D ands SDK batching

  • You can now show 3D objects in 2D views connected by Pinhole transforms #2008
  • You can quickly view images and meshes with rerun mesh.obj image.png #2060
  • The correct to install the rerun binary is now with cargo install rerun-cli #2183
  • native_viewer is now an opt-in feature of the rerun library, leading to faster compilation times #2064
  • Experimental WebGPU support #1965
  • SDK log calls are now batched on the wire, saving CPU time and bandwidth
0.6.0-3d-in-2d.mp4

Checklist

PR Build Summary: {{ pr-build-summary }}

emilk and others added 15 commits May 25, 2023 11:15
* Better error messages in build.rs

* Use anyhow instead of assert
…ll 3D scenes (#2170)

* Revert "Fix depth precision issues on WebGL due to different NDC space (#2123)"

This reverts commit 4f60fd7.

* fudge depth offsets on Webgl

* hardware_tier global constant, better depth handling for gles

* Improve the depth offset for all platforms

---------

Co-authored-by: Emil Ernerfeldt <emil.ernerfeldt@gmail.com>
* Update to latest egui and eframe, to test it before the next release

* Better control where the rerun app state is persisted

* Fix typo

* Update puffin

* Update zstd
* Remove `native_viewer` from the default features of `rerun` crate

Closes #1997

Most of our users only use the `rerun` library as a logging library
but are still paying the cost of compiling the native viewer.

With this PR, the `rerun` crate will not have the `native_viewer`
(not `web_viewer`) feature on by default. This halves the compilation
time on my computer.

The `native_viewer` feature is only for users using the `show`
or `spawn` features, which will hopefully be removed soon anyay:
* #2109

To install the `rerun` binary with `native_viewer` and `web_viewer`,
you now have to run `cargo install rerun --features binary`.
This will be improved by:
* #2108

To make things nicer for us developers, I've added `cargo rerun` as a
shorthand for compiling and running `rerun` with the `native_viewer`
feature, but NOT the `web_viewer` feature.

* Add rerun-cli

Users will now install the `rerun` binary with `cargo install rerun-cli`

* Add a README.md

* better text about how to run examples

Co-authored-by: Andreas Reich <andreas@rerun.io>

* Improve docs

* Update RELEASES.md

* Add checking of the docs to the release process

---------

Co-authored-by: Andreas Reich <andreas@rerun.io>
* run-wasm no longer pops up browser when running with --build-only

* add depth offset example

* mitigate depth issues on web

* deterministic order of depth offset determination

* inverte negative if
* Premultiply the alpha on the GPU

Premultiplying on the GPU saves us A LOT of cpu.

But texture filtering must happen AFTER premultiplying, which means
we need to do texture filtering in software on the shader.

* Add a TODO

* Cleanup

* Docfix
* Run `cargo test` on CI

* Fix compilation of `cargo test`
* Call exit(42) on SIGINT when running `python -m rerun`

* Make shutdown_rx optional for re_web_viewer_server

* Remove SIGINT from crash_handler

* Remove shutdown from re_ws_comms::server

* Remove our complex ctrl-c shutdown handling

* cargo fmt

* Fix doctest

* fix typo

Co-authored-by: Jan Procházka <1665677+jprochazk@users.noreply.github.com>

* Use u64::MAX

---------

Co-authored-by: Jan Procházka <1665677+jprochazk@users.noreply.github.com>
Add "modified" and "created" timelines for files opened with
`rerun [files…]`
…unning of the web player (#2203)

* Fix run_all script to work with new rerun-cli

* Add rerun-web alias for quick running of the web player

---------

Co-authored-by: Emil Ernerfeldt <emil.ernerfeldt@gmail.com>
* cargo update

    Updating git repository `https://github.com/rerun-io/wgpu`
    Updating crates.io index
    Updating git repository `https://github.com/gfx-rs/naga`
    Updating git repository `https://github.com/gfx-rs/d3d12-rs`
    Updating ab_glyph v0.2.18 -> v0.2.21
    Updating ab_glyph_rasterizer v0.1.7 -> v0.1.8
    Updating addr2line v0.17.0 -> v0.19.0
    Updating ahash v0.8.2 -> v0.8.3
    Updating aho-corasick v0.7.20 -> v1.0.1
    Updating android-activity v0.4.0 -> v0.4.1
      Adding anstream v0.3.2
      Adding anstyle v1.0.0
      Adding anstyle-parse v0.2.0
      Adding anstyle-query v1.0.0
      Adding anstyle-wincon v1.0.1
    Updating anyhow v1.0.66 -> v1.0.71
    Updating arrayref v0.3.6 -> v0.3.7
    Updating ashpd v0.3.2 -> v0.4.0
    Updating async-broadcast v0.4.1 -> v0.5.1
    Updating async-executor v1.5.0 -> v1.5.1
      Adding async-fs v1.6.0
      Adding async-global-executor v2.3.1
    Updating async-lock v2.6.0 -> v2.7.0
    Updating async-recursion v0.3.2 -> v1.0.4
      Adding async-std v1.12.0
    Updating async-stream v0.3.3 -> v0.3.5
    Updating async-stream-impl v0.3.3 -> v0.3.5
    Updating async-task v4.3.0 -> v4.4.0
    Updating async-trait v0.1.66 -> v0.1.68
      Adding atomic-waker v1.1.1
    Updating atomic_refcell v0.1.8 -> v0.1.10
    Updating backtrace v0.3.66 -> v0.3.67
    Updating bitflags v2.1.0 -> v2.3.1
    Updating block-buffer v0.10.3 -> v0.10.4
      Adding blocking v1.3.1
    Updating bumpalo v3.11.1 -> v3.13.0
    Updating bytemuck v1.12.3 -> v1.13.1
    Updating bytemuck_derive v1.3.0 -> v1.4.1
    Updating bytes v1.3.0 -> v1.4.0
    Updating calloop v0.10.2 -> v0.10.5
    Updating camino v1.1.1 -> v1.1.4
    Updating cargo_metadata v0.15.2 -> v0.15.4
    Updating cc v1.0.77 -> v1.0.79
    Updating chrono v0.4.23 -> v0.4.24
    Updating ciborium v0.2.0 -> v0.2.1
    Updating ciborium-io v0.2.0 -> v0.2.1
    Updating ciborium-ll v0.2.0 -> v0.2.1
    Removing clap v3.2.23
    Removing clap v4.1.14
      Adding clap v3.2.25
      Adding clap v4.3.0
    Updating clap_builder v4.1.14 -> v4.3.0
    Updating clap_derive v4.1.14 -> v4.3.0
    Updating clap_lex v0.4.1 -> v0.5.0
    Updating clipboard-win v4.4.2 -> v4.5.0
    Updating cocoa-foundation v0.1.0 -> v0.1.1
      Adding colorchoice v1.0.0
    Updating concurrent-queue v2.0.0 -> v2.2.0
    Updating console v0.15.2 -> v0.15.7
    Updating core-foundation-sys v0.8.3 -> v0.8.4
    Updating cpufeatures v0.2.5 -> v0.2.7
    Updating crossbeam-deque v0.8.2 -> v0.8.3
    Updating crossbeam-epoch v0.9.13 -> v0.9.14
    Updating crossbeam-utils v0.8.14 -> v0.8.15
      Adding ctor v0.1.26
    Updating ctrlc v3.2.2 -> v3.3.1
    Updating darling v0.14.2 -> v0.20.1
    Updating darling_core v0.14.2 -> v0.20.1
    Updating darling_macro v0.14.2 -> v0.20.1
    Updating devserver_lib v0.4.1 -> v0.4.2
    Updating digest v0.10.6 -> v0.10.7
    Removing dirs v4.0.0
    Removing dirs-sys v0.3.7
    Updating document-features v0.2.6 -> v0.2.7
    Updating dyn-clone v1.0.9 -> v1.0.11
    Updating either v1.8.0 -> v1.8.1
    Updating enumn v0.1.6 -> v0.1.8
    Updating enumset v1.0.12 -> v1.1.2
    Updating enumset_derive v0.6.1 -> v0.8.1
    Removing errno v0.2.8
    Removing errno v0.3.0
      Adding errno v0.3.1
    Updating fastrand v1.8.0 -> v1.9.0
      Adding fdeflate v0.3.0
    Updating filetime v0.2.18 -> v0.2.21
    Updating fixed v1.20.0 -> v1.23.1
    Updating flate2 v1.0.24 -> v1.0.26
    Updating futures v0.3.25 -> v0.3.28
    Updating futures-channel v0.3.25 -> v0.3.28
    Updating futures-core v0.3.25 -> v0.3.28
    Updating futures-executor v0.3.25 -> v0.3.28
    Updating futures-io v0.3.25 -> v0.3.28
    Updating futures-lite v1.12.0 -> v1.13.0
    Updating futures-macro v0.3.25 -> v0.3.28
    Updating futures-sink v0.3.25 -> v0.3.28
    Updating futures-task v0.3.25 -> v0.3.28
    Updating futures-util v0.3.25 -> v0.3.28
    Updating generic-array v0.14.6 -> v0.14.7
    Updating getrandom v0.2.8 -> v0.2.9
    Updating gimli v0.26.2 -> v0.27.2
      Adding gloo-timers v0.2.6
    Updating gpu-alloc v0.5.3 -> v0.5.4
    Updating h2 v0.3.18 -> v0.3.19
    Updating hashbrown v0.13.1 -> v0.13.2
    Updating heck v0.4.0 -> v0.4.1
      Adding hermit-abi v0.3.1
      Adding home v0.5.5
    Updating http v0.2.8 -> v0.2.9
    Updating image v0.24.5 -> v0.24.6
    Updating indexmap v1.9.2 -> v1.9.3
    Updating indoc v1.0.7 -> v1.0.9
    Updating insta v1.23.0 -> v1.29.0
    Updating io-lifetimes v1.0.4 -> v1.0.10
    Updating is-terminal v0.4.2 -> v0.4.7
    Updating itoa v1.0.4 -> v1.0.6
    Updating jni v0.20.0 -> v0.21.1
    Updating jobserver v0.1.25 -> v0.1.26
    Updating js-sys v0.3.61 -> v0.3.63
      Adding kv-log-macro v1.0.7
    Updating libc v0.2.137 -> v0.2.144
      Adding libloading v0.8.0
    Updating libm v0.2.6 -> v0.2.7
    Updating libmimalloc-sys v0.1.28 -> v0.1.33
    Removing linux-raw-sys v0.1.4
    Removing linux-raw-sys v0.3.0
      Adding linux-raw-sys v0.3.8
    Updating macaw v0.18.0 -> v0.18.3
    Updating matrixmultiply v0.3.2 -> v0.3.7
    Updating memmap2 v0.5.8 -> v0.5.10
    Updating mimalloc v0.1.32 -> v0.1.37
    Removing miniz_oxide v0.5.4
      Adding miniz_oxide v0.6.2
      Adding miniz_oxide v0.7.1
    Updating mio v0.8.5 -> v0.8.6
    Updating multiversion v0.7.1 -> v0.7.2
    Updating multiversion-macros v0.7.1 -> v0.7.2
    Removing nix v0.23.2
    Removing nix v0.24.2
      Adding nix v0.24.3
      Adding nix v0.25.1
      Adding nix v0.26.2
    Updating nom v7.1.1 -> v7.1.3
    Updating notify v5.0.0 -> v5.2.0
    Updating ntapi v0.4.0 -> v0.4.1
    Updating num-complex v0.4.2 -> v0.4.3
    Updating num_cpus v1.14.0 -> v1.15.0
    Updating num_enum v0.5.7 -> v0.5.11
    Updating num_enum_derive v0.5.7 -> v0.5.11
    Updating objc2 v0.3.0-beta.3 -> v0.3.0-beta.3.patch-leaks.3
    Updating object v0.29.0 -> v0.30.3
    Updating once_cell v1.17.0 -> v1.17.1
    Updating orbclient v0.3.42 -> v0.3.45
    Updating ordered-float v3.4.0 -> v3.7.0
    Updating ordered-stream v0.0.1 -> v0.2.0
    Updating os_str_bytes v6.4.1 -> v6.5.0
    Updating owned_ttf_parser v0.17.1 -> v0.19.0
    Updating parking v2.0.0 -> v2.1.0
    Updating parking_lot_core v0.9.4 -> v0.9.7
    Updating paste v1.0.9 -> v1.0.12
    Updating petgraph v0.6.2 -> v0.6.3
    Updating pkg-config v0.3.26 -> v0.3.27
    Updating png v0.17.6 -> v0.17.8
    Updating polling v2.5.2 -> v2.8.0
    Updating prettyplease v0.1.23 -> v0.1.25
    Updating proc-macro-crate v1.2.1 -> v1.3.1
    Updating proc-macro2 v1.0.56 -> v1.0.58
    Updating profiling v1.0.7 -> v1.0.8
    Updating prost v0.11.6 -> v0.11.9
    Updating prost-build v0.11.6 -> v0.11.9
    Updating prost-derive v0.11.6 -> v0.11.9
    Updating prost-types v0.11.6 -> v0.11.9
    Updating pyo3 v0.18.0 -> v0.18.3
    Updating pyo3-build-config v0.18.0 -> v0.18.3
    Updating pyo3-ffi v0.18.0 -> v0.18.3
    Updating pyo3-macros v0.18.0 -> v0.18.3
    Updating pyo3-macros-backend v0.18.0 -> v0.18.3
    Updating quote v1.0.26 -> v1.0.27
    Updating range-alloc v0.1.2 -> v0.1.3
    Updating redox_syscall v0.3.4 -> v0.3.5
    Updating regex v1.7.0 -> v1.8.2
    Updating regex-syntax v0.6.28 -> v0.7.2
    Updating rfd v0.11.3 -> v0.11.4
    Updating rustc-demangle v0.1.21 -> v0.1.23
    Removing rustix v0.36.7
    Removing rustix v0.37.3
      Adding rustix v0.37.19
    Updating rustls v0.20.7 -> v0.20.8
    Updating rustversion v1.0.9 -> v1.0.12
    Updating ryu v1.0.11 -> v1.0.13
    Updating sctk-adwaita v0.5.3 -> v0.5.4
    Updating semver v1.0.14 -> v1.0.17
    Updating serde v1.0.147 -> v1.0.163
    Updating serde_bytes v0.11.7 -> v0.11.9
    Updating serde_derive v1.0.147 -> v1.0.163
    Updating serde_json v1.0.89 -> v1.0.96
    Updating serde_repr v0.1.11 -> v0.1.12
    Updating serde_test v1.0.149 -> v1.0.163
    Updating sha-1 v0.10.0 -> v0.10.1
    Updating sha1 v0.6.1 -> v0.10.5
    Removing sha1_smol v1.0.0
    Updating signal-hook v0.3.14 -> v0.3.15
    Updating signal-hook-registry v1.4.0 -> v1.4.1
      Adding simd-adler32 v0.3.5
    Updating slab v0.4.7 -> v0.4.8
    Updating socket2 v0.4.7 -> v0.4.9
    Removing syn v1.0.103
    Removing syn v2.0.15
      Adding syn v1.0.109
      Adding syn v2.0.16
    Updating sysinfo v0.28.3 -> v0.28.4
    Updating target-features v0.1.3 -> v0.1.4
    Updating target-lexicon v0.12.5 -> v0.12.7
    Updating tempfile v3.4.0 -> v3.5.0
    Updating termcolor v1.1.3 -> v1.2.0
    Removing terminal_size v0.1.17
    Updating thiserror v1.0.37 -> v1.0.40
    Updating thiserror-impl v1.0.37 -> v1.0.40
    Updating thread-id v4.0.0 -> v4.1.0
    Updating time v0.3.20 -> v0.3.21
    Updating time-core v0.1.0 -> v0.1.1
    Updating time-macros v0.2.8 -> v0.2.9
    Updating tiny-skia v0.8.2 -> v0.8.4
    Updating tiny-skia-path v0.8.2 -> v0.8.4
    Updating tinyvec_macros v0.1.0 -> v0.1.1
    Updating tobj v3.2.3 -> v3.2.5
    Updating tokio v1.26.0 -> v1.28.1
    Updating tokio-macros v1.8.0 -> v2.1.0
    Updating tokio-util v0.7.4 -> v0.7.8
    Removing toml v0.5.9
      Adding toml_datetime v0.6.2
      Adding toml_edit v0.19.10
    Updating tracing-attributes v0.1.23 -> v0.1.24
    Updating tracing-core v0.1.30 -> v0.1.31
    Updating try-lock v0.2.3 -> v0.2.4
    Updating ttf-parser v0.17.1 -> v0.19.0
    Updating typenum v1.15.0 -> v1.16.0
    Updating unicode-bidi v0.3.8 -> v0.3.13
    Updating unicode-ident v1.0.5 -> v1.0.8
    Updating unicode-segmentation v1.10.0 -> v1.10.1
    Updating unindent v0.1.10 -> v0.1.11
      Adding utf8parse v0.2.1
    Updating uuid v1.2.2 -> v1.3.3
      Adding value-bag v1.0.0-alpha.9
    Updating walkdir v2.3.2 -> v2.3.3
    Updating wasm-bindgen-futures v0.4.34 -> v0.4.36
    Updating wasmparser v0.77.0 -> v0.77.1
    Updating web-sys v0.3.61 -> v0.3.63
    Updating webbrowser v0.8.6 -> v0.8.10
    Updating webpki-roots v0.22.5 -> v0.22.6
    Removing wepoll-ffi v0.1.2
    Updating windows-sys v0.42.0 -> v0.48.0
    Removing windows-targets v0.42.1
      Adding windows-targets v0.42.2
      Adding windows-targets v0.48.0
    Removing windows_aarch64_gnullvm v0.42.1
      Adding windows_aarch64_gnullvm v0.42.2
      Adding windows_aarch64_gnullvm v0.48.0
    Removing windows_aarch64_msvc v0.42.1
      Adding windows_aarch64_msvc v0.42.2
      Adding windows_aarch64_msvc v0.48.0
    Removing windows_i686_gnu v0.42.1
      Adding windows_i686_gnu v0.42.2
      Adding windows_i686_gnu v0.48.0
    Removing windows_i686_msvc v0.42.1
      Adding windows_i686_msvc v0.42.2
      Adding windows_i686_msvc v0.48.0
    Removing windows_x86_64_gnu v0.42.1
      Adding windows_x86_64_gnu v0.42.2
      Adding windows_x86_64_gnu v0.48.0
    Removing windows_x86_64_gnullvm v0.42.1
      Adding windows_x86_64_gnullvm v0.42.2
      Adding windows_x86_64_gnullvm v0.48.0
    Removing windows_x86_64_msvc v0.42.1
      Adding windows_x86_64_msvc v0.42.2
      Adding windows_x86_64_msvc v0.48.0
    Updating winit v0.28.1 -> v0.28.6
      Adding winnow v0.4.6
    Updating x11-dl v2.20.0 -> v2.21.0
      Adding xdg-home v1.0.0
    Updating xml-rs v0.8.4 -> v0.8.13
    Updating zbus v2.3.2 -> v3.12.0
    Updating zbus_macros v2.3.2 -> v3.12.0
    Updating zbus_names v2.5.0 -> v2.5.1
    Updating zip v0.6.3 -> v0.6.6
    Updating zvariant v3.12.0 -> v3.13.0
    Updating zvariant_derive v3.12.0 -> v3.13.0

* Update criterion 0.4 -> 0.5

* Fix compilation of `cargo test`

* Signal handler: don't install a handler for SIGINT and SIGTERM

It is already covered by ctrlc library

* vscode: Fix the debug launch.json

* typo

* downgrade ctrlc to 3.2.2

* Better docstring

* Update sysinfo

* Update notify and tobj
Regression from #2190
* Replace ctrlc crate with tokio signals

* Don't treat SIGTERM as a crash
@emilk emilk added the do-not-merge Do not merge this PR label May 25, 2023
emilk and others added 5 commits May 25, 2023 11:31
* Update to wgpu 0.16.1

* cargo deny: allow duplicate of crate libloading
The recording handle work changed the behavior of some of our warnings
when calling a log API without having called `rr.init`.

Before:
```
[2023-05-25T09:09:33Z WARN  re_sdk::global] There is no currently active Data recording available for the current thread (ThreadId(1)): have you called `set_global()` and/or `set_thread_local()` first?
WARNING:rerun:Rerun is disabled - log_text_box() call ignored
```

After:
```
WARNING:rerun:Rerun is disabled - log_text_box() call ignored. You must call rerun.init before using log APIs.
```

PR Build Summary: https://build.rerun.io/pr/2209
@emilk emilk added the ⛴ release Related to shipping or publishing label May 25, 2023
emilk and others added 8 commits May 25, 2023 14:50
During release process we want to build wheels and web artifacts before
we do the final tagging / pypi uploading.
Advantages:
* Faster compilation times
* 3x faster encode and decode
* Pure Rust crate
* Can compress in wasm

Disadvantages:
| example .rrd  |  zstd          |  lz4  |
| ------------- | ------------- | ------------- |
| api_demo      |   48 kB |  93 kB |
| car           | 120 kB        | 375 kB        |
| clock         | 28 kB         | 53 kB         |
| colmap        | 227 MB        | 241 MB        |
| deep_sdf      | 19 MB         | 20 MB         |
| dicom         | 39 MB         | 64 MB         |
| nyud          | 535 MB        | 634 MB        |
| plots         | 89 kB         | 163 kB        |
| raw_mesh      | 1.5 MB        | 5.6 MB        |
| text_logging  | 1.9 kB        | 3.0 kB        |

I'm not sure what is the best trade-off here. I'm gonna check the
compilation times too.

Note that these compilation times impact our Rust users, as well as our
contributors.

### Checklist
* [x] I have read and agree to [Contributor
Guide](https://github.com/rerun-io/rerun/blob/main/CONTRIBUTING.md) and
the [Code of
Conduct](https://github.com/rerun-io/rerun/blob/main/CODE_OF_CONDUCT.md)

<!-- This line will get updated when the PR build summary job finishes.
-->
PR Build Summary: https://build.rerun.io/pr/2112
Gives us a much nicer realtime feel for the camera example.

Our example .rrd files don't grow by more than a few percent at worst,
so I think this is well worth it to make rerun feel snappy.

### Checklist
* [x] I have read and agree to [Contributor
Guide](https://github.com/rerun-io/rerun/blob/main/CONTRIBUTING.md) and
the [Code of
Conduct](https://github.com/rerun-io/rerun/blob/main/CODE_OF_CONDUCT.md)

<!-- This line will get updated when the PR build summary job finishes.
-->
PR Build Summary: https://build.rerun.io/pr/2220
emilk and others added 13 commits May 25, 2023 18:48
Changed all our examples from

```py
import rerun as rr
```

to

```py
import rerun as rr  # pip install rerun-sdk
```

A lot of people only look at examples, and we want to make sure they
don't fall into the trap of `pip install rerun`

* [x] I have read and agree to [Contributor
Guide](https://github.com/rerun-io/rerun/blob/main/CONTRIBUTING.md) and
the [Code of
Conduct](https://github.com/rerun-io/rerun/blob/main/CODE_OF_CONDUCT.md)

<!-- This line will get updated when the PR build summary job finishes.
-->
PR Build Summary: https://build.rerun.io/pr/2221
### What
The release is now orchestrated by the two jobs:
-
https://github.com/rerun-io/rerun/actions/workflows/manual_build_release.yml
-- builds the wheels and web aritfacts
- https://github.com/rerun-io/rerun/actions/workflows/manual_release.yml
-- publishes the built wheels to pypi and creates a draft github release
page

### Checklist
* [x] I have read and agree to [Contributor
Guide](https://github.com/rerun-io/rerun/blob/main/CONTRIBUTING.md) and
the [Code of
Conduct](https://github.com/rerun-io/rerun/blob/main/CODE_OF_CONDUCT.md)
* [ ] I've included a screenshot or gif (if applicable)

<!-- This line will get updated when the PR build summary job finishes.
-->
PR Build Summary: https://build.rerun.io/pr/2213
…mms (#2219)

Closes #2216

The compression for SDK comms was added in
#2065 and now removed in this PR.

* [x] I have read and agree to [Contributor
Guide](https://github.com/rerun-io/rerun/blob/main/CONTRIBUTING.md) and
the [Code of
Conduct](https://github.com/rerun-io/rerun/blob/main/CODE_OF_CONDUCT.md)

<!-- This line will get updated when the PR build summary job finishes.
-->
PR Build Summary: https://build.rerun.io/pr/2219
@emilk
Copy link
Member Author

emilk commented May 25, 2023

What’s left to do:

@emilk
Copy link
Member Author

emilk commented May 26, 2023

We have released!

Let's merge back the things we want in main on:

@emilk emilk closed this May 26, 2023
Wumpf added a commit that referenced this pull request May 26, 2023
### What
Things from #2208 that should be
merged back into `main`

### Checklist
* [x] I have read and agree to [Contributor
Guide](https://github.com/rerun-io/rerun/blob/main/CONTRIBUTING.md) and
the [Code of
Conduct](https://github.com/rerun-io/rerun/blob/main/CODE_OF_CONDUCT.md)

<!-- This line will get updated when the PR build summary job finishes.
-->
PR Build Summary: https://build.rerun.io/pr/2228

---------

Co-authored-by: Jeremy Leibs <jeremy@rerun.io>
Co-authored-by: Andreas Reich <r_andreas2@web.de>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
do-not-merge Do not merge this PR ⛴ release Related to shipping or publishing
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Release 0.6.0
4 participants