WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 021587f

Browse files
committed
Bump version to 0.3.1
1 parent 68d639b commit 021587f

File tree

2 files changed

+58
-58
lines changed

2 files changed

+58
-58
lines changed

Cargo.lock

Lines changed: 33 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -16,37 +16,37 @@ include = ["../../LICENSE-APACHE", "../../LICENSE-MIT", "**/*.rs", "Cargo.toml"]
1616
license = "MIT OR Apache-2.0"
1717
repository = "https://github.com/rerun-io/rerun"
1818
rust-version = "1.67"
19-
version = "0.3.0"
19+
version = "0.3.1"
2020

2121
[workspace.dependencies]
2222
# When using alpha-release, always use exact version, e.g. `version = "=0.x.y-alpha.z"
2323
# This is because we treat alpha-releases as incompatible, but semver doesn't.
2424
# In particular: if we compile rerun 0.3.0-alpha.0 we only want it to use
2525
# re_log_types 0.3.0-alpha.0, NOT 0.3.0-alpha.4 even though it is newer and semver-compatible.
26-
re_analytics = { path = "crates/re_analytics", version = "0.3.0" }
27-
re_arrow_store = { path = "crates/re_arrow_store", version = "0.3.0" }
28-
re_build_build_info = { path = "crates/re_build_build_info", version = "0.3.0" }
29-
re_build_info = { path = "crates/re_build_info", version = "0.3.0" }
30-
re_build_web_viewer = { path = "crates/re_build_web_viewer", version = "0.3.0" }
31-
re_data_store = { path = "crates/re_data_store", version = "0.3.0" }
32-
re_error = { path = "crates/re_error", version = "0.3.0" }
33-
re_format = { path = "crates/re_format", version = "0.3.0" }
34-
re_log = { path = "crates/re_log", version = "0.3.0" }
35-
re_log_types = { path = "crates/re_log_types", version = "0.3.0" }
36-
re_memory = { path = "crates/re_memory", version = "0.3.0" }
37-
re_query = { path = "crates/re_query", version = "0.3.0" }
38-
re_renderer = { path = "crates/re_renderer", version = "0.3.0" }
39-
re_sdk = { path = "crates/re_sdk", version = "0.3.0" }
40-
re_sdk_comms = { path = "crates/re_sdk_comms", version = "0.3.0" }
41-
re_smart_channel = { path = "crates/re_smart_channel", version = "0.3.0" }
42-
re_string_interner = { path = "crates/re_string_interner", version = "0.3.0" }
43-
re_tensor_ops = { path = "crates/re_tensor_ops", version = "0.3.0" }
44-
re_tuid = { path = "crates/re_tuid", version = "0.3.0" }
45-
re_ui = { path = "crates/re_ui", version = "0.3.0" }
46-
re_viewer = { path = "crates/re_viewer", version = "0.3.0" }
47-
re_web_viewer_server = { path = "crates/re_web_viewer_server", version = "0.3.0" }
48-
re_ws_comms = { path = "crates/re_ws_comms", version = "0.3.0" }
49-
rerun = { path = "crates/rerun", version = "0.3.0" }
26+
re_analytics = { path = "crates/re_analytics", version = "0.3.1" }
27+
re_arrow_store = { path = "crates/re_arrow_store", version = "0.3.1" }
28+
re_build_build_info = { path = "crates/re_build_build_info", version = "0.3.1" }
29+
re_build_info = { path = "crates/re_build_info", version = "0.3.1" }
30+
re_build_web_viewer = { path = "crates/re_build_web_viewer", version = "0.3.1" }
31+
re_data_store = { path = "crates/re_data_store", version = "0.3.1" }
32+
re_error = { path = "crates/re_error", version = "0.3.1" }
33+
re_format = { path = "crates/re_format", version = "0.3.1" }
34+
re_log = { path = "crates/re_log", version = "0.3.1" }
35+
re_log_types = { path = "crates/re_log_types", version = "0.3.1" }
36+
re_memory = { path = "crates/re_memory", version = "0.3.1" }
37+
re_query = { path = "crates/re_query", version = "0.3.1" }
38+
re_renderer = { path = "crates/re_renderer", version = "0.3.1" }
39+
re_sdk = { path = "crates/re_sdk", version = "0.3.1" }
40+
re_sdk_comms = { path = "crates/re_sdk_comms", version = "0.3.1" }
41+
re_smart_channel = { path = "crates/re_smart_channel", version = "0.3.1" }
42+
re_string_interner = { path = "crates/re_string_interner", version = "0.3.1" }
43+
re_tensor_ops = { path = "crates/re_tensor_ops", version = "0.3.1" }
44+
re_tuid = { path = "crates/re_tuid", version = "0.3.1" }
45+
re_ui = { path = "crates/re_ui", version = "0.3.1" }
46+
re_viewer = { path = "crates/re_viewer", version = "0.3.1" }
47+
re_web_viewer_server = { path = "crates/re_web_viewer_server", version = "0.3.1" }
48+
re_ws_comms = { path = "crates/re_ws_comms", version = "0.3.1" }
49+
rerun = { path = "crates/rerun", version = "0.3.1" }
5050

5151
anyhow = "1.0"
5252
arrow2 = "0.16"

0 commit comments

Comments
 (0)