Bump version to 0.2.0

This commit is contained in:
Connor Slade
2025-02-19 22:01:08 -05:00
parent 970b277657
commit c7269cbc05
5 changed files with 16 additions and 4 deletions

2
Cargo.lock generated
View File

@@ -2938,7 +2938,7 @@ dependencies = [
[[package]] [[package]]
name = "mslicer" name = "mslicer"
version = "0.1.0" version = "0.2.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"bincode", "bincode",

View File

@@ -1,6 +1,6 @@
# Changelog # Changelog
## v0.2.0 — Coming Soon ## v0.2.0 — Feb 19, 2025
- Convert slice operation window to a dockable panel - Convert slice operation window to a dockable panel
- Render parts of models that go beyond the print volume red - Render parts of models that go beyond the print volume red

View File

@@ -33,6 +33,18 @@
</screenshots> </screenshots>
<releases> <releases>
<release version="0.2.0" date="2025-02-19">
<description>
<ul>
<li>Convert slice operation window to a dockable panel</li>
<li>Render parts of models that go beyond the print volume red</li>
<li>Remove the Stats panel and merge it into the Workspace panel</li>
<li>Add documentation into the About panel</li>
<li>Add random triangle color mesh render mode</li>
<li>Persist panel layout between sessions. I also added a button to reset the UI layout in the Workspace panel.</li>
</ul>
</description>
</release>
<release version="0.1.0" date="2025-02-12"> <release version="0.1.0" date="2025-02-12">
<description> <description>
<p>Initial release.</p> <p>Initial release.</p>

View File

@@ -7,7 +7,7 @@ impl Default for Header {
Self { Self {
version: SizedString::new(b"V3.0"), version: SizedString::new(b"V3.0"),
software_info: SizedString::new(b"mslicer by Connor Slade"), software_info: SizedString::new(b"mslicer by Connor Slade"),
software_version: SizedString::new(b"0.1.0"), software_version: SizedString::new(env!("CARGO_PKG_VERSION").as_bytes()),
file_time: SizedString::new(b""), file_time: SizedString::new(b""),
printer_name: SizedString::new(b"standard"), printer_name: SizedString::new(b"standard"),
printer_type: SizedString::new(b"Default"), printer_type: SizedString::new(b"Default"),

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "mslicer" name = "mslicer"
version = "0.1.0" version = "0.2.0"
edition = "2021" edition = "2021"
[dependencies] [dependencies]