diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d2d5651e..0f4d1a666 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,75 @@ # Fornjot - Changelog +## v0.22.0 (2022-10-31) + +### End-user improvements + +Improvements to Fornjot and its documentation that are visible to end users. + +- Fix UI being blurry on some systems ([#1266]; thank you, [@erenoku]!) +- Improve error message when failing to load model ([#1268]) +- Enable anti-aliasing ([#1274]) +- Fix text of status messages looking jagged ([#1275]) +- Fix some crashes, turn them into actionable errors ([#1276]) +- Add UI to load model from within app, if no model is passed ([#1286], [#1288]; 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` + +- Clean up API ([#1269]) + +#### `fj-kernel` + +- Add new validation infrastructure ([#1279], [#1282], [#1283], [#1284], [#1285]) +- Simplify handling of `MaybePartial` ([#1287]) + +#### `fj-math` + +- Replace `Point::distance` with `distance_to` ([#1281]) + +### Internal Improvements + +Improvements that are relevant to developers working on Fornjot itself. + +- Update release procedure ([#1258]) +- Clean up CI build ([#1259], [#1260]) +- Update dependencies ([#1261], [#1262], [#1263], [#1264], [#1265], [#1267]) +- Lower limits requested of the graphics backend ([#1273]) +- Make sure `fj`'s `build.rs` doesn't run too often ([#1277]) + +[#1258]: https://github.com/hannobraun/Fornjot/pull/1258 +[#1259]: https://github.com/hannobraun/Fornjot/pull/1259 +[#1260]: https://github.com/hannobraun/Fornjot/pull/1260 +[#1261]: https://github.com/hannobraun/Fornjot/pull/1261 +[#1262]: https://github.com/hannobraun/Fornjot/pull/1262 +[#1263]: https://github.com/hannobraun/Fornjot/pull/1263 +[#1264]: https://github.com/hannobraun/Fornjot/pull/1264 +[#1265]: https://github.com/hannobraun/Fornjot/pull/1265 +[#1266]: https://github.com/hannobraun/Fornjot/pull/1266 +[#1267]: https://github.com/hannobraun/Fornjot/pull/1267 +[#1268]: https://github.com/hannobraun/Fornjot/pull/1268 +[#1269]: https://github.com/hannobraun/Fornjot/pull/1269 +[#1273]: https://github.com/hannobraun/Fornjot/pull/1273 +[#1274]: https://github.com/hannobraun/Fornjot/pull/1274 +[#1275]: https://github.com/hannobraun/Fornjot/pull/1275 +[#1276]: https://github.com/hannobraun/Fornjot/pull/1276 +[#1277]: https://github.com/hannobraun/Fornjot/pull/1277 +[#1279]: https://github.com/hannobraun/Fornjot/pull/1279 +[#1281]: https://github.com/hannobraun/Fornjot/pull/1281 +[#1282]: https://github.com/hannobraun/Fornjot/pull/1282 +[#1283]: https://github.com/hannobraun/Fornjot/pull/1283 +[#1284]: https://github.com/hannobraun/Fornjot/pull/1284 +[#1285]: https://github.com/hannobraun/Fornjot/pull/1285 +[#1286]: https://github.com/hannobraun/Fornjot/pull/1286 +[#1287]: https://github.com/hannobraun/Fornjot/pull/1287 +[#1288]: https://github.com/hannobraun/Fornjot/pull/1288 + +[@erenoku]: https://github.com/erenoku + + ## v0.21.0 (2022-10-24) ### End-user improvements diff --git a/Cargo.lock b/Cargo.lock index a9511676c..936270dd2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1122,7 +1122,7 @@ dependencies = [ [[package]] name = "fj" -version = "0.21.0" +version = "0.22.0" dependencies = [ "fj-proc", "serde", @@ -1131,7 +1131,7 @@ dependencies = [ [[package]] name = "fj-app" -version = "0.21.0" +version = "0.22.0" dependencies = [ "anyhow", "clap", @@ -1151,7 +1151,7 @@ dependencies = [ [[package]] name = "fj-export" -version = "0.21.0" +version = "0.22.0" dependencies = [ "fj-interop", "fj-math", @@ -1162,7 +1162,7 @@ dependencies = [ [[package]] name = "fj-host" -version = "0.21.0" +version = "0.22.0" dependencies = [ "cargo_metadata", "crossbeam-channel", @@ -1175,7 +1175,7 @@ dependencies = [ [[package]] name = "fj-interop" -version = "0.21.0" +version = "0.22.0" dependencies = [ "chrono", "fj-math", @@ -1183,7 +1183,7 @@ dependencies = [ [[package]] name = "fj-kernel" -version = "0.21.0" +version = "0.22.0" dependencies = [ "anyhow", "fj-interop", @@ -1199,7 +1199,7 @@ dependencies = [ [[package]] name = "fj-math" -version = "0.21.0" +version = "0.22.0" dependencies = [ "approx 0.5.1", "decorum", @@ -1212,7 +1212,7 @@ dependencies = [ [[package]] name = "fj-operations" -version = "0.21.0" +version = "0.22.0" dependencies = [ "fj", "fj-interop", @@ -1223,7 +1223,7 @@ dependencies = [ [[package]] name = "fj-proc" -version = "0.21.0" +version = "0.22.0" dependencies = [ "fj", "proc-macro2", @@ -1234,7 +1234,7 @@ dependencies = [ [[package]] name = "fj-viewer" -version = "0.21.0" +version = "0.22.0" dependencies = [ "bytemuck", "crossbeam-channel", @@ -1253,7 +1253,7 @@ dependencies = [ [[package]] name = "fj-window" -version = "0.21.0" +version = "0.22.0" dependencies = [ "crossbeam-channel", "egui-winit", diff --git a/Cargo.toml b/Cargo.toml index 871799229..f5bc493f6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ default-members = [ [workspace.package] -version = "0.21.0" +version = "0.22.0" edition = "2021" description = """\ @@ -56,41 +56,41 @@ categories = ["encoding", "mathematics", "rendering"] [workspace.dependencies.fj] -version = "0.21.0" +version = "0.22.0" path = "crates/fj" [workspace.dependencies.fj-export] -version = "0.21.0" +version = "0.22.0" path = "crates/fj-export" [workspace.dependencies.fj-host] -version = "0.21.0" +version = "0.22.0" path = "crates/fj-host" [workspace.dependencies.fj-interop] -version = "0.21.0" +version = "0.22.0" path = "crates/fj-interop" [workspace.dependencies.fj-kernel] -version = "0.21.0" +version = "0.22.0" path = "crates/fj-kernel" [workspace.dependencies.fj-math] -version = "0.21.0" +version = "0.22.0" path = "crates/fj-math" [workspace.dependencies.fj-operations] -version = "0.21.0" +version = "0.22.0" path = "crates/fj-operations" [workspace.dependencies.fj-proc] -version = "0.21.0" +version = "0.22.0" path = "crates/fj-proc" [workspace.dependencies.fj-viewer] -version = "0.21.0" +version = "0.22.0" path = "crates/fj-viewer" [workspace.dependencies.fj-window] -version = "0.21.0" +version = "0.22.0" path = "crates/fj-window"