Skip to content

Commit 3cbc1ca

Browse files
committed
chore: add release profile settings for optimization
1 parent 29a1bcd commit 3cbc1ca

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plcviz/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 0.3.2 (2025-12-16)
4+
- Changes to release binary for Linux
5+
36
## 0.3.1 (2025-12-14)
47

58
### Added

plcviz/Cargo.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "plcviz"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
edition = "2021"
55
description = "PLC code visualization - graphs, dependencies, and documentation"
66
license = "MIT"
@@ -22,3 +22,8 @@ regex = "1"
2222
clap = { version = "4.5", features = ["derive"] }
2323

2424
[dev-dependencies]
25+
26+
[profile.release]
27+
strip = true # Remove debug symbols
28+
lto = true # Link-time optimization
29+
codegen-units = 1 # Better optimization

0 commit comments

Comments
 (0)