From d9d1b020f4412db82632b13d61a00cbe8e9b972f Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Mon, 19 Dec 2022 14:33:31 +0100 Subject: [PATCH 1/2] Update changelog --- CHANGELOG.md | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b37ed161a..3e66437eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,54 @@ # Fornjot - Changelog +## v0.29.0 (2022-12-19) + +### End-user improvements + +Improvements to Fornjot and its documentation that are visible to end users. + +- Fix crash when minimizing window on Windows ([#1447]; thank you, [@kazatsuyu]!) + +### 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 cleanup of object construction code ([#1445], [#1446], [#1448], [#1449], [#1450], [#1451], [#1452], [#1453], [#1456], [#1457]) +- Fix doc comment ([#1458]) + +#### `fj-math` + +- Return line coordinates from `Line::from_points` ([#1455]) + +### Internal Improvements + +Improvements that are relevant to developers working on Fornjot itself. + +- Update dependencies ([#1437], [#1438], [#1440], [#1443], [#1444]) + +[#1437]: https://github.com/hannobraun/Fornjot/pull/1437 +[#1438]: https://github.com/hannobraun/Fornjot/pull/1438 +[#1440]: https://github.com/hannobraun/Fornjot/pull/1440 +[#1443]: https://github.com/hannobraun/Fornjot/pull/1443 +[#1444]: https://github.com/hannobraun/Fornjot/pull/1444 +[#1445]: https://github.com/hannobraun/Fornjot/pull/1445 +[#1446]: https://github.com/hannobraun/Fornjot/pull/1446 +[#1447]: https://github.com/hannobraun/Fornjot/pull/1447 +[#1448]: https://github.com/hannobraun/Fornjot/pull/1448 +[#1449]: https://github.com/hannobraun/Fornjot/pull/1449 +[#1450]: https://github.com/hannobraun/Fornjot/pull/1450 +[#1451]: https://github.com/hannobraun/Fornjot/pull/1451 +[#1452]: https://github.com/hannobraun/Fornjot/pull/1452 +[#1453]: https://github.com/hannobraun/Fornjot/pull/1453 +[#1455]: https://github.com/hannobraun/Fornjot/pull/1455 +[#1456]: https://github.com/hannobraun/Fornjot/pull/1456 +[#1457]: https://github.com/hannobraun/Fornjot/pull/1457 +[#1458]: https://github.com/hannobraun/Fornjot/pull/1458 + +[@kazatsuyu]: https://github.com/kazatsuyu + + ## v0.28.0 (2022-12-12) ### End-user improvements From 52e0627e28d3be0faf27de5fa5c85b0467d746bd Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Mon, 19 Dec 2022 14:34:10 +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 353998cfe..acde239dc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1129,7 +1129,7 @@ dependencies = [ [[package]] name = "fj" -version = "0.28.0" +version = "0.29.0" dependencies = [ "anyhow", "fj-proc", @@ -1139,7 +1139,7 @@ dependencies = [ [[package]] name = "fj-app" -version = "0.28.0" +version = "0.29.0" dependencies = [ "anyhow", "clap", @@ -1159,7 +1159,7 @@ dependencies = [ [[package]] name = "fj-export" -version = "0.28.0" +version = "0.29.0" dependencies = [ "fj-interop", "fj-math", @@ -1170,7 +1170,7 @@ dependencies = [ [[package]] name = "fj-host" -version = "0.28.0" +version = "0.29.0" dependencies = [ "cargo_metadata", "crossbeam-channel", @@ -1183,14 +1183,14 @@ dependencies = [ [[package]] name = "fj-interop" -version = "0.28.0" +version = "0.29.0" dependencies = [ "fj-math", ] [[package]] name = "fj-kernel" -version = "0.28.0" +version = "0.29.0" dependencies = [ "anyhow", "fj-interop", @@ -1207,7 +1207,7 @@ dependencies = [ [[package]] name = "fj-math" -version = "0.28.0" +version = "0.29.0" dependencies = [ "approx 0.5.1", "decorum", @@ -1220,7 +1220,7 @@ dependencies = [ [[package]] name = "fj-operations" -version = "0.28.0" +version = "0.29.0" dependencies = [ "fj", "fj-interop", @@ -1231,7 +1231,7 @@ dependencies = [ [[package]] name = "fj-proc" -version = "0.28.0" +version = "0.29.0" dependencies = [ "fj", "proc-macro2", @@ -1242,7 +1242,7 @@ dependencies = [ [[package]] name = "fj-viewer" -version = "0.28.0" +version = "0.29.0" dependencies = [ "bytemuck", "chrono", @@ -1262,7 +1262,7 @@ dependencies = [ [[package]] name = "fj-window" -version = "0.28.0" +version = "0.29.0" dependencies = [ "crossbeam-channel", "egui-winit", diff --git a/Cargo.toml b/Cargo.toml index 9726a9918..dcfb10d1c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ default-members = [ [workspace.package] -version = "0.28.0" +version = "0.29.0" edition = "2021" description = """\ @@ -56,41 +56,41 @@ categories = ["encoding", "mathematics", "rendering"] [workspace.dependencies.fj] -version = "0.28.0" +version = "0.29.0" path = "crates/fj" [workspace.dependencies.fj-export] -version = "0.28.0" +version = "0.29.0" path = "crates/fj-export" [workspace.dependencies.fj-host] -version = "0.28.0" +version = "0.29.0" path = "crates/fj-host" [workspace.dependencies.fj-interop] -version = "0.28.0" +version = "0.29.0" path = "crates/fj-interop" [workspace.dependencies.fj-kernel] -version = "0.28.0" +version = "0.29.0" path = "crates/fj-kernel" [workspace.dependencies.fj-math] -version = "0.28.0" +version = "0.29.0" path = "crates/fj-math" [workspace.dependencies.fj-operations] -version = "0.28.0" +version = "0.29.0" path = "crates/fj-operations" [workspace.dependencies.fj-proc] -version = "0.28.0" +version = "0.29.0" path = "crates/fj-proc" [workspace.dependencies.fj-viewer] -version = "0.28.0" +version = "0.29.0" path = "crates/fj-viewer" [workspace.dependencies.fj-window] -version = "0.28.0" +version = "0.29.0" path = "crates/fj-window"