Skip to content

Commit 8d1946b

Browse files
release: v0.4.1
1 parent 3d95b2f commit 8d1946b

File tree

4 files changed

+14
-20
lines changed

4 files changed

+14
-20
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.4.0"
23+
version = "0.4.1"
2424
edition = "2024"
2525
authors = [
2626
"Anthony Rubick <68485672+AnthonyMichaelTDM@users.noreply.github.com>",
@@ -166,10 +166,10 @@ opentelemetry-otlp = { version = "0.28.0", features = ["grpc-tonic"] }
166166
tracing-flame = "0.2.0"
167167

168168
# MECOMP packages
169-
mecomp-analysis = { path = "analysis", version = "=0.4.0" }
170-
mecomp-core = { path = "core", default-features = false, version = "=0.4.0" }
171-
mecomp-daemon = { path = "daemon", version = "=0.4.0" }
172-
mecomp-storage = { path = "storage", default-features = false, version = "=0.4.0" }
169+
mecomp-analysis = { path = "analysis", version = "=0.4.1" }
170+
mecomp-core = { path = "core", default-features = false, version = "=0.4.1" }
171+
mecomp-daemon = { path = "daemon", version = "=0.4.1" }
172+
mecomp-storage = { path = "storage", default-features = false, version = "=0.4.1" }
173173
surrealqlx = { path = "surrealqlx/lib", version = "=0.1.4" }
174174
surrealqlx-macros = { path = "surrealqlx/macros", version = "=0.1.4" }
175175
surrealqlx-macros-impl = { path = "surrealqlx/macros-impl", version = "=0.1.4" }

daemon/src/termination.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ async fn terminate_by_signal(terminator: Terminator) {
177177
}
178178

179179
#[cfg(not(unix))]
180-
async fn terminate_by_signal(mut terminator: Terminator) {
180+
async fn terminate_by_signal(terminator: Terminator) {
181181
// On non-unix systems, we don't have any signals to handle.
182182
// We can still use the ctrl_c signal to terminate the application.
183183

dist-workspace.toml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,7 @@ ci = "github"
1010
# The installers to generate for each app
1111
installers = ["shell", "powershell", "msi"]
1212
# Target platforms to build apps for (Rust target-triple syntax)
13-
targets = [
14-
"aarch64-apple-darwin",
15-
"aarch64-unknown-linux-gnu",
16-
"x86_64-apple-darwin",
17-
"x86_64-unknown-linux-gnu",
18-
"x86_64-pc-windows-msvc",
19-
]
13+
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]
2014
# Path that installers should place binaries in
2115
install-path = "CARGO_HOME"
2216
# Whether to install an updater program

0 commit comments

Comments
 (0)