Skip to content

Commit c01c919

Browse files
chore: version v0.4.0 and windows hotfix
1 parent 0908d2e commit c01c919

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ exclude = ["external", "target", "assets", "scripts"]
2020
resolver = "2"
2121

2222
[workspace.package]
23-
version = "0.3.4"
23+
version = "0.4.0"
2424
edition = "2024"
2525
authors = [
2626
"Anthony Rubick <68485672+AnthonyMichaelTDM@users.noreply.github.com>",
@@ -161,10 +161,10 @@ opentelemetry-otlp = { version = "0.28.0", features = ["grpc-tonic"] }
161161
tracing-flame = "0.2.0"
162162

163163
# MECOMP packages
164-
mecomp-analysis = { path = "analysis", version = "=0.3.4" }
165-
mecomp-core = { path = "core", default-features = false, version = "=0.3.4" }
166-
mecomp-daemon = { path = "daemon", version = "=0.3.4" }
167-
mecomp-storage = { path = "storage", default-features = false, version = "=0.3.4" }
164+
mecomp-analysis = { path = "analysis", version = "=0.4.0" }
165+
mecomp-core = { path = "core", default-features = false, version = "=0.4.0" }
166+
mecomp-daemon = { path = "daemon", version = "=0.4.0" }
167+
mecomp-storage = { path = "storage", default-features = false, version = "=0.4.0" }
168168
surrealqlx = { path = "surrealqlx/lib", version = "=0.1.3" }
169169
surrealqlx-macros = { path = "surrealqlx/macros", version = "=0.1.3" }
170170
surrealqlx-macros-impl = { path = "surrealqlx/macros-impl", version = "=0.1.3" }

tui/src/termination.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ pub fn create_termination() -> (Terminator, broadcast::Receiver<Interrupted>) {
6868
let (tx, rx) = broadcast::channel(1);
6969
let terminator = Terminator::new(tx);
7070

71+
#[cfg(unix)]
7172
tokio::spawn(terminate_by_unix_signal(terminator.clone()));
7273

7374
(terminator, rx)

0 commit comments

Comments
 (0)