From ff588b82b0350f9b33aec598c7f3ee0bb3e2acb2 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Mon, 30 Jan 2023 12:48:13 +0100 Subject: [PATCH 1/2] Update changelog --- CHANGELOG.md | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 921c92ae7..214f5f6e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,53 @@ # Fornjot - Changelog +## v0.34.0 (2023-01-30) + +### End-user improvements + +Improvements to Fornjot and its documentation that are visible to end users. + +*None this week. Busy working on the kernel!* + +### Ecosystem improvements + +Improvements to Fornjot components that are relevant to developers building on top of those. These have an indirect effect on end users, through fixed bugs and improved robustness. + +#### `fj-kernel` + +- Continue simplifying object graph around `HalfEdge` ([#1535], [#1536]) +- Add more debug information to approximation ([#1537]) +- Improve validation error messages ([#1540]) +- Respect existing boundary when updating `HalfEdge` as line segment ([#1541]) + +#### `fj-window` + +- Box event loop error variants ([#1539]) + +### Internal Improvements + +Improvements that are relevant to developers working on Fornjot itself. + +- Update dependencies ([#1528], [#1529], [#1530], [#1531], [#1533]) +- Minimize scope of `unsafe` block ([#1538]) +- Update release automation ([#1542]) +- Upgrade to Rust 1.67.0 ([#1543]) + +[#1528]: https://github.com/hannobraun/Fornjot/pull/1528 +[#1529]: https://github.com/hannobraun/Fornjot/pull/1529 +[#1530]: https://github.com/hannobraun/Fornjot/pull/1530 +[#1531]: https://github.com/hannobraun/Fornjot/pull/1531 +[#1533]: https://github.com/hannobraun/Fornjot/pull/1533 +[#1535]: https://github.com/hannobraun/Fornjot/pull/1535 +[#1536]: https://github.com/hannobraun/Fornjot/pull/1536 +[#1537]: https://github.com/hannobraun/Fornjot/pull/1537 +[#1538]: https://github.com/hannobraun/Fornjot/pull/1538 +[#1539]: https://github.com/hannobraun/Fornjot/pull/1539 +[#1540]: https://github.com/hannobraun/Fornjot/pull/1540 +[#1541]: https://github.com/hannobraun/Fornjot/pull/1541 +[#1542]: https://github.com/hannobraun/Fornjot/pull/1542 +[#1543]: https://github.com/hannobraun/Fornjot/pull/1543 + + ## v0.33.0 (2023-01-23) ### End-user improvements From a3c34258cdde4fa4a12f94fcb4084396b6acd042 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Mon, 30 Jan 2023 12:48:43 +0100 Subject: [PATCH 2/2] Update version --- Cargo.lock | 22 +++++++++++----------- Cargo.toml | 22 +++++++++++----------- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6af7d1894..ba58cdf87 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1141,7 +1141,7 @@ dependencies = [ [[package]] name = "fj" -version = "0.33.0" +version = "0.34.0" dependencies = [ "anyhow", "fj-proc", @@ -1151,7 +1151,7 @@ dependencies = [ [[package]] name = "fj-app" -version = "0.33.0" +version = "0.34.0" dependencies = [ "anyhow", "clap", @@ -1171,7 +1171,7 @@ dependencies = [ [[package]] name = "fj-export" -version = "0.33.0" +version = "0.34.0" dependencies = [ "fj-interop", "fj-math", @@ -1182,7 +1182,7 @@ dependencies = [ [[package]] name = "fj-host" -version = "0.33.0" +version = "0.34.0" dependencies = [ "cargo_metadata", "crossbeam-channel", @@ -1198,14 +1198,14 @@ dependencies = [ [[package]] name = "fj-interop" -version = "0.33.0" +version = "0.34.0" dependencies = [ "fj-math", ] [[package]] name = "fj-kernel" -version = "0.33.0" +version = "0.34.0" dependencies = [ "anyhow", "fj-interop", @@ -1222,7 +1222,7 @@ dependencies = [ [[package]] name = "fj-math" -version = "0.33.0" +version = "0.34.0" dependencies = [ "approx 0.5.1", "decorum", @@ -1235,7 +1235,7 @@ dependencies = [ [[package]] name = "fj-operations" -version = "0.33.0" +version = "0.34.0" dependencies = [ "fj", "fj-interop", @@ -1246,7 +1246,7 @@ dependencies = [ [[package]] name = "fj-proc" -version = "0.33.0" +version = "0.34.0" dependencies = [ "fj", "proc-macro2", @@ -1257,7 +1257,7 @@ dependencies = [ [[package]] name = "fj-viewer" -version = "0.33.0" +version = "0.34.0" dependencies = [ "bytemuck", "chrono", @@ -1277,7 +1277,7 @@ dependencies = [ [[package]] name = "fj-window" -version = "0.33.0" +version = "0.34.0" dependencies = [ "crossbeam-channel", "egui-winit", diff --git a/Cargo.toml b/Cargo.toml index 88c64bb29..be68c9d83 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ default-members = [ [workspace.package] -version = "0.33.0" +version = "0.34.0" edition = "2021" description = """\ @@ -56,41 +56,41 @@ categories = ["encoding", "mathematics", "rendering"] [workspace.dependencies.fj] -version = "0.33.0" +version = "0.34.0" path = "crates/fj" [workspace.dependencies.fj-export] -version = "0.33.0" +version = "0.34.0" path = "crates/fj-export" [workspace.dependencies.fj-host] -version = "0.33.0" +version = "0.34.0" path = "crates/fj-host" [workspace.dependencies.fj-interop] -version = "0.33.0" +version = "0.34.0" path = "crates/fj-interop" [workspace.dependencies.fj-kernel] -version = "0.33.0" +version = "0.34.0" path = "crates/fj-kernel" [workspace.dependencies.fj-math] -version = "0.33.0" +version = "0.34.0" path = "crates/fj-math" [workspace.dependencies.fj-operations] -version = "0.33.0" +version = "0.34.0" path = "crates/fj-operations" [workspace.dependencies.fj-proc] -version = "0.33.0" +version = "0.34.0" path = "crates/fj-proc" [workspace.dependencies.fj-viewer] -version = "0.33.0" +version = "0.34.0" path = "crates/fj-viewer" [workspace.dependencies.fj-window] -version = "0.33.0" +version = "0.34.0" path = "crates/fj-window"