Skip to content

Commit

Permalink
Release 0.2.0 - The first public release of Rerun! (rerun-io#1306)
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk authored Feb 14, 2023
1 parent 1b60db9 commit 90c160f
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 52 deletions.
58 changes: 29 additions & 29 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

44 changes: 22 additions & 22 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,30 +10,30 @@ include = ["../../LICENSE-APACHE", "../../LICENSE-MIT", "**/*.rs", "Cargo.toml"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rerun-io/rerun"
rust-version = "1.67"
version = "0.2.0-alpha.8"
version = "0.2.0"

[workspace.dependencies]
re_analytics = { path = "crates/re_analytics", version = "0.2.0-alpha.8" }
re_arrow_store = { path = "crates/re_arrow_store", version = "0.2.0-alpha.8" }
re_data_store = { path = "crates/re_data_store", version = "0.2.0-alpha.8" }
re_error = { path = "crates/re_error", version = "0.2.0-alpha.8" }
re_format = { path = "crates/re_format", version = "0.2.0-alpha.8" }
re_log = { path = "crates/re_log", version = "0.2.0-alpha.8" }
re_log_types = { path = "crates/re_log_types", version = "0.2.0-alpha.8" }
re_memory = { path = "crates/re_memory", version = "0.2.0-alpha.8" }
re_query = { path = "crates/re_query", version = "0.2.0-alpha.8" }
re_renderer = { path = "crates/re_renderer", version = "0.2.0-alpha.8" }
re_sdk = { path = "crates/re_sdk", version = "0.2.0-alpha.8" }
re_sdk_comms = { path = "crates/re_sdk_comms", version = "0.2.0-alpha.8" }
re_smart_channel = { path = "crates/re_smart_channel", version = "0.2.0-alpha.8" }
re_string_interner = { path = "crates/re_string_interner", version = "0.2.0-alpha.8" }
re_tensor_ops = { path = "crates/re_tensor_ops", version = "0.2.0-alpha.8" }
re_tuid = { path = "crates/re_tuid", version = "0.2.0-alpha.8" }
re_ui = { path = "crates/re_ui", version = "0.2.0-alpha.8" }
re_viewer = { path = "crates/re_viewer", version = "0.2.0-alpha.8" }
re_web_server = { path = "crates/re_web_server", version = "0.2.0-alpha.8" }
re_ws_comms = { path = "crates/re_ws_comms", version = "0.2.0-alpha.8" }
rerun = { path = "crates/rerun", version = "0.2.0-alpha.8" }
re_analytics = { path = "crates/re_analytics", version = "0.2.0" }
re_arrow_store = { path = "crates/re_arrow_store", version = "0.2.0" }
re_data_store = { path = "crates/re_data_store", version = "0.2.0" }
re_error = { path = "crates/re_error", version = "0.2.0" }
re_format = { path = "crates/re_format", version = "0.2.0" }
re_log = { path = "crates/re_log", version = "0.2.0" }
re_log_types = { path = "crates/re_log_types", version = "0.2.0" }
re_memory = { path = "crates/re_memory", version = "0.2.0" }
re_query = { path = "crates/re_query", version = "0.2.0" }
re_renderer = { path = "crates/re_renderer", version = "0.2.0" }
re_sdk = { path = "crates/re_sdk", version = "0.2.0" }
re_sdk_comms = { path = "crates/re_sdk_comms", version = "0.2.0" }
re_smart_channel = { path = "crates/re_smart_channel", version = "0.2.0" }
re_string_interner = { path = "crates/re_string_interner", version = "0.2.0" }
re_tensor_ops = { path = "crates/re_tensor_ops", version = "0.2.0" }
re_tuid = { path = "crates/re_tuid", version = "0.2.0" }
re_ui = { path = "crates/re_ui", version = "0.2.0" }
re_viewer = { path = "crates/re_viewer", version = "0.2.0" }
re_web_server = { path = "crates/re_web_server", version = "0.2.0" }
re_ws_comms = { path = "crates/re_ws_comms", version = "0.2.0" }
rerun = { path = "crates/rerun", version = "0.2.0" }

anyhow = "1.0"
arrow2 = "0.16"
Expand Down
2 changes: 1 addition & 1 deletion scripts/publish_crates.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ set -x
# that build.rs, which will change the built `.wasm` file while this publish script is running.
# SUPER BAD! We need to fix this ASAP, but it is the night before our first release public
# release and I'm tired. Will fix later, mkay?
echo "MAKE SURE RUST ANALYZER IS OFF!"
echo "MAKE SURE RUST ANALYZER, BACON, CARGO-WATCH etc are all OFF!"
rm -rf target_wasm # force clean build
rm -f web_viewer/re_viewer_bg.wasm
rm -f web_viewer/re_viewer.js
Expand Down

0 comments on commit 90c160f

Please sign in to comment.