From 43e7f689a20a8c7a98097e9e74bd2176a7b418d2 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Mon, 24 Oct 2022 11:37:41 +0200 Subject: [PATCH 1/2] Update changelog --- CHANGELOG.md | 77 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f51ff2c88..9d2d5651e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,82 @@ # Fornjot - Changelog +## v0.21.0 (2022-10-24) + +### End-user improvements + +Improvements to Fornjot and its documentation that are visible to end users. + +- Improve error message, if model can't be loaded ([#1235]) +- Make sure versions are compatible before loading model ([#1237]) +- Always require model when starting `fj-app` ([#1242]) +- Fix startup delay while model is compiling ([#1244]) +- Print timestamp with each status update ([#1256]; thank you, [@erenoku]!) + +### 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-host` + +- Rename `Watcher::receive`; improve its error handling ([#1234]) + +#### `fj-kernel` + +- Fix last known object duplication issues ([#1233], [#1238]) +- Integrate all remaining objects into centralized object storage ([#1246], [#1247], [#1248], [#1252], [#1255]) +- Simplify use of `MaybePartial` ([#1253]) +- Consolidate builder API for `Face` in `FaceBuilder` ([#1254]) + +#### `fj-viewer` + +- Clean up API ([#1232]) + +#### `fj-window` + +- Simplify `fj_window::run` arguments ([#1243], [#1245]) + +### Internal Improvements + +Improvements that are relevant to developers working on Fornjot itself. + +- Compile Fornjot to WebAssembly ([#1221]) +- Update release procedure ([#1225]) +- Run export validation on macOS ([#1226]) +- Update dependencies ([#1227], [#1228], [#1229]) +- Clean up some code ([#1241], [#1251]) +- Update `README.md` ([#1250]) + +[#1221]: https://github.com/hannobraun/Fornjot/pull/1221 +[#1225]: https://github.com/hannobraun/Fornjot/pull/1225 +[#1226]: https://github.com/hannobraun/Fornjot/pull/1226 +[#1227]: https://github.com/hannobraun/Fornjot/pull/1227 +[#1228]: https://github.com/hannobraun/Fornjot/pull/1228 +[#1229]: https://github.com/hannobraun/Fornjot/pull/1229 +[#1232]: https://github.com/hannobraun/Fornjot/pull/1232 +[#1233]: https://github.com/hannobraun/Fornjot/pull/1233 +[#1234]: https://github.com/hannobraun/Fornjot/pull/1234 +[#1235]: https://github.com/hannobraun/Fornjot/pull/1235 +[#1237]: https://github.com/hannobraun/Fornjot/pull/1237 +[#1238]: https://github.com/hannobraun/Fornjot/pull/1238 +[#1241]: https://github.com/hannobraun/Fornjot/pull/1241 +[#1242]: https://github.com/hannobraun/Fornjot/pull/1242 +[#1243]: https://github.com/hannobraun/Fornjot/pull/1243 +[#1244]: https://github.com/hannobraun/Fornjot/pull/1244 +[#1245]: https://github.com/hannobraun/Fornjot/pull/1245 +[#1246]: https://github.com/hannobraun/Fornjot/pull/1246 +[#1247]: https://github.com/hannobraun/Fornjot/pull/1247 +[#1248]: https://github.com/hannobraun/Fornjot/pull/1248 +[#1250]: https://github.com/hannobraun/Fornjot/pull/1250 +[#1251]: https://github.com/hannobraun/Fornjot/pull/1251 +[#1252]: https://github.com/hannobraun/Fornjot/pull/1252 +[#1253]: https://github.com/hannobraun/Fornjot/pull/1253 +[#1254]: https://github.com/hannobraun/Fornjot/pull/1254 +[#1255]: https://github.com/hannobraun/Fornjot/pull/1255 +[#1256]: https://github.com/hannobraun/Fornjot/pull/1256 + +[@erenoku]: https://github.com/erenoku + + ## v0.20.0 (2022-10-17) ### End-user improvements From 9bf2b0822c8df863226f27645f06c791c84a2f45 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Mon, 24 Oct 2022 11:38:11 +0200 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 cd02626ed..b4913603f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -951,7 +951,7 @@ dependencies = [ [[package]] name = "fj" -version = "0.20.0" +version = "0.21.0" dependencies = [ "fj-proc", "serde", @@ -960,7 +960,7 @@ dependencies = [ [[package]] name = "fj-app" -version = "0.20.0" +version = "0.21.0" dependencies = [ "anyhow", "clap", @@ -980,7 +980,7 @@ dependencies = [ [[package]] name = "fj-export" -version = "0.20.0" +version = "0.21.0" dependencies = [ "fj-interop", "fj-math", @@ -991,7 +991,7 @@ dependencies = [ [[package]] name = "fj-host" -version = "0.20.0" +version = "0.21.0" dependencies = [ "cargo_metadata", "crossbeam-channel", @@ -1004,7 +1004,7 @@ dependencies = [ [[package]] name = "fj-interop" -version = "0.20.0" +version = "0.21.0" dependencies = [ "chrono", "fj-math", @@ -1012,7 +1012,7 @@ dependencies = [ [[package]] name = "fj-kernel" -version = "0.20.0" +version = "0.21.0" dependencies = [ "anyhow", "fj-interop", @@ -1027,7 +1027,7 @@ dependencies = [ [[package]] name = "fj-math" -version = "0.20.0" +version = "0.21.0" dependencies = [ "approx 0.5.1", "decorum", @@ -1040,7 +1040,7 @@ dependencies = [ [[package]] name = "fj-operations" -version = "0.20.0" +version = "0.21.0" dependencies = [ "fj", "fj-interop", @@ -1051,7 +1051,7 @@ dependencies = [ [[package]] name = "fj-proc" -version = "0.20.0" +version = "0.21.0" dependencies = [ "fj", "proc-macro2", @@ -1062,7 +1062,7 @@ dependencies = [ [[package]] name = "fj-viewer" -version = "0.20.0" +version = "0.21.0" dependencies = [ "bytemuck", "egui", @@ -1079,7 +1079,7 @@ dependencies = [ [[package]] name = "fj-window" -version = "0.20.0" +version = "0.21.0" dependencies = [ "egui-winit", "fj-host", diff --git a/Cargo.toml b/Cargo.toml index 7e834b857..871799229 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ default-members = [ [workspace.package] -version = "0.20.0" +version = "0.21.0" edition = "2021" description = """\ @@ -56,41 +56,41 @@ categories = ["encoding", "mathematics", "rendering"] [workspace.dependencies.fj] -version = "0.20.0" +version = "0.21.0" path = "crates/fj" [workspace.dependencies.fj-export] -version = "0.20.0" +version = "0.21.0" path = "crates/fj-export" [workspace.dependencies.fj-host] -version = "0.20.0" +version = "0.21.0" path = "crates/fj-host" [workspace.dependencies.fj-interop] -version = "0.20.0" +version = "0.21.0" path = "crates/fj-interop" [workspace.dependencies.fj-kernel] -version = "0.20.0" +version = "0.21.0" path = "crates/fj-kernel" [workspace.dependencies.fj-math] -version = "0.20.0" +version = "0.21.0" path = "crates/fj-math" [workspace.dependencies.fj-operations] -version = "0.20.0" +version = "0.21.0" path = "crates/fj-operations" [workspace.dependencies.fj-proc] -version = "0.20.0" +version = "0.21.0" path = "crates/fj-proc" [workspace.dependencies.fj-viewer] -version = "0.20.0" +version = "0.21.0" path = "crates/fj-viewer" [workspace.dependencies.fj-window] -version = "0.20.0" +version = "0.21.0" path = "crates/fj-window"