From 52053b0a0fec74fc1b2966b4e805ae0609dedf94 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Mon, 6 Feb 2023 12:29:17 +0100 Subject: [PATCH 1/2] Update changelog --- CHANGELOG.md | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 214f5f6e5..df1b009e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,53 @@ # Fornjot - Changelog +## v0.35.0 (2023-02-06) + +### End-user improvements + +Improvements to Fornjot and its documentation that are visible to end users. + +- Fixed status messages taking up too much space ([#1551]; thank you, [@tmayoff]!) +- Display version mismatch warning in GUI ([#1554]; thank you, [@tmayoff]!) + +### 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` + +- Improve validation error message ([#1553]) +- Lift limitation when inferring surface as plane ([#1556]) +- Reuse cached curve approximation, if range is reversed ([#1557]) + +#### `fj-math` + +- Improve projections into plane ([#1555]) + +### Internal Improvements + +Improvements that are relevant to developers working on Fornjot itself. + +- Update dependencies ([#1546], [#1547], [#1548], [#1550]) +- Update list of sponsors ([#1552]) +- Updated nix flake inputs ([#1558]; thank you, [@Philipp-M]!) + +[#1546]: https://github.com/hannobraun/Fornjot/pull/1546 +[#1547]: https://github.com/hannobraun/Fornjot/pull/1547 +[#1548]: https://github.com/hannobraun/Fornjot/pull/1548 +[#1550]: https://github.com/hannobraun/Fornjot/pull/1550 +[#1551]: https://github.com/hannobraun/Fornjot/pull/1551 +[#1552]: https://github.com/hannobraun/Fornjot/pull/1552 +[#1553]: https://github.com/hannobraun/Fornjot/pull/1553 +[#1554]: https://github.com/hannobraun/Fornjot/pull/1554 +[#1555]: https://github.com/hannobraun/Fornjot/pull/1555 +[#1556]: https://github.com/hannobraun/Fornjot/pull/1556 +[#1557]: https://github.com/hannobraun/Fornjot/pull/1557 +[#1558]: https://github.com/hannobraun/Fornjot/pull/1558 + +[@tmayoff]: https://github.com/tmayoff +[@Philipp-M]: https://github.com/Philipp-M + + ## v0.34.0 (2023-01-30) ### End-user improvements From a167a39a6133533b327321c612702cc799e607a6 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Mon, 6 Feb 2023 12:29:55 +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 8025e0dc5..06e5ec754 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1141,7 +1141,7 @@ dependencies = [ [[package]] name = "fj" -version = "0.34.0" +version = "0.35.0" dependencies = [ "anyhow", "fj-proc", @@ -1151,7 +1151,7 @@ dependencies = [ [[package]] name = "fj-app" -version = "0.34.0" +version = "0.35.0" dependencies = [ "anyhow", "clap", @@ -1171,7 +1171,7 @@ dependencies = [ [[package]] name = "fj-export" -version = "0.34.0" +version = "0.35.0" dependencies = [ "fj-interop", "fj-math", @@ -1182,7 +1182,7 @@ dependencies = [ [[package]] name = "fj-host" -version = "0.34.0" +version = "0.35.0" dependencies = [ "cargo_metadata", "crossbeam-channel", @@ -1198,14 +1198,14 @@ dependencies = [ [[package]] name = "fj-interop" -version = "0.34.0" +version = "0.35.0" dependencies = [ "fj-math", ] [[package]] name = "fj-kernel" -version = "0.34.0" +version = "0.35.0" dependencies = [ "anyhow", "fj-interop", @@ -1222,7 +1222,7 @@ dependencies = [ [[package]] name = "fj-math" -version = "0.34.0" +version = "0.35.0" dependencies = [ "approx 0.5.1", "decorum", @@ -1235,7 +1235,7 @@ dependencies = [ [[package]] name = "fj-operations" -version = "0.34.0" +version = "0.35.0" dependencies = [ "fj", "fj-interop", @@ -1246,7 +1246,7 @@ dependencies = [ [[package]] name = "fj-proc" -version = "0.34.0" +version = "0.35.0" dependencies = [ "fj", "proc-macro2", @@ -1257,7 +1257,7 @@ dependencies = [ [[package]] name = "fj-viewer" -version = "0.34.0" +version = "0.35.0" dependencies = [ "bytemuck", "chrono", @@ -1277,7 +1277,7 @@ dependencies = [ [[package]] name = "fj-window" -version = "0.34.0" +version = "0.35.0" dependencies = [ "crossbeam-channel", "egui-winit", diff --git a/Cargo.toml b/Cargo.toml index be68c9d83..6123f08cf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ default-members = [ [workspace.package] -version = "0.34.0" +version = "0.35.0" edition = "2021" description = """\ @@ -56,41 +56,41 @@ categories = ["encoding", "mathematics", "rendering"] [workspace.dependencies.fj] -version = "0.34.0" +version = "0.35.0" path = "crates/fj" [workspace.dependencies.fj-export] -version = "0.34.0" +version = "0.35.0" path = "crates/fj-export" [workspace.dependencies.fj-host] -version = "0.34.0" +version = "0.35.0" path = "crates/fj-host" [workspace.dependencies.fj-interop] -version = "0.34.0" +version = "0.35.0" path = "crates/fj-interop" [workspace.dependencies.fj-kernel] -version = "0.34.0" +version = "0.35.0" path = "crates/fj-kernel" [workspace.dependencies.fj-math] -version = "0.34.0" +version = "0.35.0" path = "crates/fj-math" [workspace.dependencies.fj-operations] -version = "0.34.0" +version = "0.35.0" path = "crates/fj-operations" [workspace.dependencies.fj-proc] -version = "0.34.0" +version = "0.35.0" path = "crates/fj-proc" [workspace.dependencies.fj-viewer] -version = "0.34.0" +version = "0.35.0" path = "crates/fj-viewer" [workspace.dependencies.fj-window] -version = "0.34.0" +version = "0.35.0" path = "crates/fj-window"