Skip to content

Commit 7486bf8

Browse files
emilkteh-cmc
andauthored
Release 0.2.0-alpha.0 (#1229)
* fix release tag matching * Update release instructions * Bump version to 0.2.0-alpha.0 * Turn on all features for all crates when building the docs * Add badges to all the crates * put internal crates as workspace items with version numbers * re_renderer/build.rs: only touch file on disk if it changed * Don't call cargofmt from re_renderer build.rs * Add sanity-check to re_renderer/build.rs * Make the sanity check sane * include shaders in re_renderer package * fix publishing of re_ui * Improve error message from re_web_server/build.rs * re_web_server/build.rs: handle building outside of rerun workspace * fix re_sdk_comms path * Just include shaders under re_renderer/shader * Only run our build.rs files when in our workspace * Fix publishing or re_web_server * Fix publishing re_renderer/build.rs * Remove wrong badge * Clean up RELEASES.md * nit * Clean up RELEASES.md * Revert "re_web_server/build.rs: handle building outside of rerun workspace" This reverts commit c055908. * fix rerun badges Co-authored-by: Clement Rey <cr.rey.clement@gmail.com> * Better comment --------- Co-authored-by: Clement Rey <cr.rey.clement@gmail.com>
1 parent e3682ac commit 7486bf8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+608
-250
lines changed

.cargo/config.toml

+5
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,8 @@
22
# To easily run examples on the web, see https://github.com/rukai/cargo-run-wasm.
33
# Temporary solution while we wait for our own xtasks!
44
run-wasm = "run --release --package run_wasm --"
5+
6+
[env]
7+
# Some of our build.rs files only run if this is set,
8+
# so that we don't run them on cargo publish or on users machines.
9+
IS_IN_RERUN_WORKSPACE = "yes"

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release Tag
33
on:
44
push:
55
tags:
6-
- "*.*.*" # on release tag
6+
- "v*.*.*" # on release tag
77

88
concurrency:
99
group: ${{ github.workflow }}-${{ github.event.pull_request.number }} # Cancel previous CI jobs on the same branch

Cargo.lock

+30-30
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+26-3
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,43 @@ members = ["crates/*", "examples/rust/*", "rerun_py", "run_wasm"]
55
[workspace.package]
66
authors = ["rerun.io <opensource@rerun.io>"]
77
edition = "2021"
8-
homepage = "http://rerun.io"
8+
homepage = "https://rerun.io"
9+
include = ["../../LICENSE-APACHE", "../../LICENSE-MIT", "**/*.rs", "Cargo.toml"]
910
license = "MIT OR Apache-2.0"
1011
repository = "https://github.com/rerun-io/rerun"
1112
rust-version = "1.67"
12-
version = "0.1.0"
13+
version = "0.2.0-alpha.0"
1314

1415
[workspace.dependencies]
16+
re_analytics = { path = "crates/re_analytics", version = "0.2.0-alpha.0" }
17+
re_arrow_store = { path = "crates/re_arrow_store", version = "0.2.0-alpha.0" }
18+
re_data_store = { path = "crates/re_data_store", version = "0.2.0-alpha.0" }
19+
re_error = { path = "crates/re_error", version = "0.2.0-alpha.0" }
20+
re_format = { path = "crates/re_format", version = "0.2.0-alpha.0" }
21+
re_log = { path = "crates/re_log", version = "0.2.0-alpha.0" }
22+
re_log_types = { path = "crates/re_log_types", version = "0.2.0-alpha.0" }
23+
re_memory = { path = "crates/re_memory", version = "0.2.0-alpha.0" }
24+
re_query = { path = "crates/re_query", version = "0.2.0-alpha.0" }
25+
re_renderer = { path = "crates/re_renderer", version = "0.2.0-alpha.0" }
26+
re_sdk = { path = "crates/re_sdk", version = "0.2.0-alpha.0" }
27+
re_sdk_comms = { path = "crates/re_sdk_comms", version = "0.2.0-alpha.0" }
28+
re_smart_channel = { path = "crates/re_smart_channel", version = "0.2.0-alpha.0" }
29+
re_string_interner = { path = "crates/re_string_interner", version = "0.2.0-alpha.0" }
30+
re_tensor_ops = { path = "crates/re_tensor_ops", version = "0.2.0-alpha.0" }
31+
re_tuid = { path = "crates/re_tuid", version = "0.2.0-alpha.0" }
32+
re_ui = { path = "crates/re_ui", version = "0.2.0-alpha.0" }
33+
re_viewer = { path = "crates/re_viewer", version = "0.2.0-alpha.0" }
34+
re_web_server = { path = "crates/re_web_server", version = "0.2.0-alpha.0" }
35+
re_ws_comms = { path = "crates/re_ws_comms", version = "0.2.0-alpha.0" }
36+
rerun = { path = "crates/rerun", version = "0.2.0-alpha.0" }
37+
1538
anyhow = "1.0"
1639
arrow2 = "0.16"
1740
arrow2_convert = "0.4.2"
1841
comfy-table = { version = "6.1", default-features = false }
1942
derive_more = "0.99"
2043
ecolor = "0.21.0"
21-
eframe = { version = "0.21.1", default-features = false }
44+
eframe = { version = "0.21.2", default-features = false }
2245
egui = "0.21.0"
2346
egui_dock = "0.4"
2447
egui_extras = "0.21.0"

0 commit comments

Comments
 (0)