From c7f232a04f5141800f4fb6786dae82d38f0fb729 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Mon, 28 Nov 2022 13:58:32 +0100 Subject: [PATCH 1/2] Update changelog --- CHANGELOG.md | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d186ee4ddd..8c78a2a797 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,60 @@ # Fornjot - Changelog +## v0.26.0 (2022-11-28) + +### End-user improvements + +Improvements to Fornjot and its documentation that are visible to end users. + +- Remove model generation feature to fix `cargo install` error ([#1373]) +- Enable model version check on Windows ([#1374]) +- Change messages to say "evaluating" instead of "compiling" ([#1396]) + +### 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` + +- Build service abstraction around `Objects` ([#1377], [#1384], [#1390], [#1392], [#1393]) +- Fix `Store` iteration bug ([#1383]) +- Simplify old builder structs ([#1388]) +- Add `Object` enum ([#1391]) + +#### `fj-operations` + +- Take `&mut Objects` in `Shape::compute_brep` ([#1389]) +- Simplify return value of `Shape::compute_brep` ([#1394]) + +### Internal Improvements + +Improvements that are relevant to developers working on Fornjot itself. + +- Update dependencies ([#1378], [#1379], [#1380], [#1381], [#1382], [#1386]) +- Make some small cleanups ([#1395]) + +[#1373]: https://github.com/hannobraun/Fornjot/pull/1373 +[#1374]: https://github.com/hannobraun/Fornjot/pull/1374 +[#1377]: https://github.com/hannobraun/Fornjot/pull/1377 +[#1378]: https://github.com/hannobraun/Fornjot/pull/1378 +[#1379]: https://github.com/hannobraun/Fornjot/pull/1379 +[#1380]: https://github.com/hannobraun/Fornjot/pull/1380 +[#1381]: https://github.com/hannobraun/Fornjot/pull/1381 +[#1382]: https://github.com/hannobraun/Fornjot/pull/1382 +[#1383]: https://github.com/hannobraun/Fornjot/pull/1383 +[#1384]: https://github.com/hannobraun/Fornjot/pull/1384 +[#1386]: https://github.com/hannobraun/Fornjot/pull/1386 +[#1388]: https://github.com/hannobraun/Fornjot/pull/1388 +[#1389]: https://github.com/hannobraun/Fornjot/pull/1389 +[#1390]: https://github.com/hannobraun/Fornjot/pull/1390 +[#1391]: https://github.com/hannobraun/Fornjot/pull/1391 +[#1392]: https://github.com/hannobraun/Fornjot/pull/1392 +[#1393]: https://github.com/hannobraun/Fornjot/pull/1393 +[#1394]: https://github.com/hannobraun/Fornjot/pull/1394 +[#1395]: https://github.com/hannobraun/Fornjot/pull/1395 +[#1396]: https://github.com/hannobraun/Fornjot/pull/1396 + + ## v0.25.0 (2022-11-21) ### End-user improvements From 3f99cb20be01ed5f89224905a937585f04042410 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Mon, 28 Nov 2022 13:59:08 +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 8d00b32251..39ed725239 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1131,7 +1131,7 @@ dependencies = [ [[package]] name = "fj" -version = "0.25.0" +version = "0.26.0" dependencies = [ "anyhow", "fj-proc", @@ -1141,7 +1141,7 @@ dependencies = [ [[package]] name = "fj-app" -version = "0.25.0" +version = "0.26.0" dependencies = [ "anyhow", "clap", @@ -1162,7 +1162,7 @@ dependencies = [ [[package]] name = "fj-export" -version = "0.25.0" +version = "0.26.0" dependencies = [ "fj-interop", "fj-math", @@ -1173,7 +1173,7 @@ dependencies = [ [[package]] name = "fj-host" -version = "0.25.0" +version = "0.26.0" dependencies = [ "cargo_metadata", "crossbeam-channel", @@ -1186,14 +1186,14 @@ dependencies = [ [[package]] name = "fj-interop" -version = "0.25.0" +version = "0.26.0" dependencies = [ "fj-math", ] [[package]] name = "fj-kernel" -version = "0.25.0" +version = "0.26.0" dependencies = [ "anyhow", "fj-interop", @@ -1210,7 +1210,7 @@ dependencies = [ [[package]] name = "fj-math" -version = "0.25.0" +version = "0.26.0" dependencies = [ "approx 0.5.1", "decorum", @@ -1223,7 +1223,7 @@ dependencies = [ [[package]] name = "fj-operations" -version = "0.25.0" +version = "0.26.0" dependencies = [ "fj", "fj-interop", @@ -1234,7 +1234,7 @@ dependencies = [ [[package]] name = "fj-proc" -version = "0.25.0" +version = "0.26.0" dependencies = [ "fj", "proc-macro2", @@ -1245,7 +1245,7 @@ dependencies = [ [[package]] name = "fj-viewer" -version = "0.25.0" +version = "0.26.0" dependencies = [ "bytemuck", "chrono", @@ -1265,7 +1265,7 @@ dependencies = [ [[package]] name = "fj-window" -version = "0.25.0" +version = "0.26.0" dependencies = [ "crossbeam-channel", "egui-winit", diff --git a/Cargo.toml b/Cargo.toml index c64a9ef160..ee014aaf83 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ default-members = [ [workspace.package] -version = "0.25.0" +version = "0.26.0" edition = "2021" description = """\ @@ -56,41 +56,41 @@ categories = ["encoding", "mathematics", "rendering"] [workspace.dependencies.fj] -version = "0.25.0" +version = "0.26.0" path = "crates/fj" [workspace.dependencies.fj-export] -version = "0.25.0" +version = "0.26.0" path = "crates/fj-export" [workspace.dependencies.fj-host] -version = "0.25.0" +version = "0.26.0" path = "crates/fj-host" [workspace.dependencies.fj-interop] -version = "0.25.0" +version = "0.26.0" path = "crates/fj-interop" [workspace.dependencies.fj-kernel] -version = "0.25.0" +version = "0.26.0" path = "crates/fj-kernel" [workspace.dependencies.fj-math] -version = "0.25.0" +version = "0.26.0" path = "crates/fj-math" [workspace.dependencies.fj-operations] -version = "0.25.0" +version = "0.26.0" path = "crates/fj-operations" [workspace.dependencies.fj-proc] -version = "0.25.0" +version = "0.26.0" path = "crates/fj-proc" [workspace.dependencies.fj-viewer] -version = "0.25.0" +version = "0.26.0" path = "crates/fj-viewer" [workspace.dependencies.fj-window] -version = "0.25.0" +version = "0.26.0" path = "crates/fj-window"