diff --git a/CHANGELOG.md b/CHANGELOG.md index e8bb8a96f..3c38c6827 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,60 @@ # Fornjot - Changelog +## v0.42.0 (2023-03-27) + +### End-user improvements + +Improvements to Fornjot and its documentation that are visible to end users. + +- Improve error message, if model code panics ([#1716], [#1721]; thank you, [@IamTheCarl]!) + +### 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` + +- Remove dependency on winit ([#1712]; thank you, [@IamTheCarl]!) + +#### `fj-kernel` + +- Add validation checks for `Shell` and `Solid` ([#1695]; thank you, [@A-Walrus]!) +- Fix winding algorithm not going back to start ([#1709]) +- Create new API for creating/updating geometry ([#1711], [#1714], [#1717], [#1718], [#1719]) +- Clean up objects service code ([#1715]) + +### Internal Improvements + +Improvements that are relevant to developers working on Fornjot itself. + +- Update dependencies ([#1701], [#1702], [#1703], [#1705], [#1707], [#1723]) +- Update release procedure ([#1708]) +- Fix rust-analyzer in Nix flake ([#1710]; thank you, [@A-Walrus]!) + +[#1695]: https://github.com/hannobraun/Fornjot/pull/1695 +[#1701]: https://github.com/hannobraun/Fornjot/pull/1701 +[#1702]: https://github.com/hannobraun/Fornjot/pull/1702 +[#1703]: https://github.com/hannobraun/Fornjot/pull/1703 +[#1705]: https://github.com/hannobraun/Fornjot/pull/1705 +[#1707]: https://github.com/hannobraun/Fornjot/pull/1707 +[#1708]: https://github.com/hannobraun/Fornjot/pull/1708 +[#1709]: https://github.com/hannobraun/Fornjot/pull/1709 +[#1710]: https://github.com/hannobraun/Fornjot/pull/1710 +[#1711]: https://github.com/hannobraun/Fornjot/pull/1711 +[#1712]: https://github.com/hannobraun/Fornjot/pull/1712 +[#1714]: https://github.com/hannobraun/Fornjot/pull/1714 +[#1715]: https://github.com/hannobraun/Fornjot/pull/1715 +[#1716]: https://github.com/hannobraun/Fornjot/pull/1716 +[#1717]: https://github.com/hannobraun/Fornjot/pull/1717 +[#1718]: https://github.com/hannobraun/Fornjot/pull/1718 +[#1719]: https://github.com/hannobraun/Fornjot/pull/1719 +[#1721]: https://github.com/hannobraun/Fornjot/pull/1721 +[#1723]: https://github.com/hannobraun/Fornjot/pull/1723 + +[@A-Walrus]: https://github.com/A-Walrus +[@IamTheCarl]: https://github.com/IamTheCarl + + ## v0.41.0 (2023-03-20) ### End-user improvements diff --git a/Cargo.lock b/Cargo.lock index 536eb8c85..017e290a3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1036,7 +1036,7 @@ dependencies = [ [[package]] name = "fj" -version = "0.41.0" +version = "0.42.0" dependencies = [ "anyhow", "backtrace", @@ -1047,7 +1047,7 @@ dependencies = [ [[package]] name = "fj-app" -version = "0.41.0" +version = "0.42.0" dependencies = [ "anyhow", "clap", @@ -1067,7 +1067,7 @@ dependencies = [ [[package]] name = "fj-export" -version = "0.41.0" +version = "0.42.0" dependencies = [ "fj-interop", "fj-math", @@ -1078,7 +1078,7 @@ dependencies = [ [[package]] name = "fj-host" -version = "0.41.0" +version = "0.42.0" dependencies = [ "cargo_metadata", "crossbeam-channel", @@ -1093,14 +1093,14 @@ dependencies = [ [[package]] name = "fj-interop" -version = "0.41.0" +version = "0.42.0" dependencies = [ "fj-math", ] [[package]] name = "fj-kernel" -version = "0.41.0" +version = "0.42.0" dependencies = [ "anyhow", "fj-interop", @@ -1117,7 +1117,7 @@ dependencies = [ [[package]] name = "fj-math" -version = "0.41.0" +version = "0.42.0" dependencies = [ "approx 0.5.1", "decorum", @@ -1130,7 +1130,7 @@ dependencies = [ [[package]] name = "fj-operations" -version = "0.41.0" +version = "0.42.0" dependencies = [ "fj", "fj-interop", @@ -1142,7 +1142,7 @@ dependencies = [ [[package]] name = "fj-proc" -version = "0.41.0" +version = "0.42.0" dependencies = [ "proc-macro2", "quote", @@ -1152,7 +1152,7 @@ dependencies = [ [[package]] name = "fj-viewer" -version = "0.41.0" +version = "0.42.0" dependencies = [ "bytemuck", "chrono", @@ -1173,7 +1173,7 @@ dependencies = [ [[package]] name = "fj-window" -version = "0.41.0" +version = "0.42.0" dependencies = [ "crossbeam-channel", "egui-winit", diff --git a/Cargo.toml b/Cargo.toml index edec206ae..f3b6da3eb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ default-members = [ [workspace.package] -version = "0.41.0" +version = "0.42.0" edition = "2021" description = """\ @@ -56,41 +56,41 @@ categories = ["encoding", "mathematics", "rendering"] [workspace.dependencies.fj] -version = "0.41.0" +version = "0.42.0" path = "crates/fj" [workspace.dependencies.fj-export] -version = "0.41.0" +version = "0.42.0" path = "crates/fj-export" [workspace.dependencies.fj-host] -version = "0.41.0" +version = "0.42.0" path = "crates/fj-host" [workspace.dependencies.fj-interop] -version = "0.41.0" +version = "0.42.0" path = "crates/fj-interop" [workspace.dependencies.fj-kernel] -version = "0.41.0" +version = "0.42.0" path = "crates/fj-kernel" [workspace.dependencies.fj-math] -version = "0.41.0" +version = "0.42.0" path = "crates/fj-math" [workspace.dependencies.fj-operations] -version = "0.41.0" +version = "0.42.0" path = "crates/fj-operations" [workspace.dependencies.fj-proc] -version = "0.41.0" +version = "0.42.0" path = "crates/fj-proc" [workspace.dependencies.fj-viewer] -version = "0.41.0" +version = "0.42.0" path = "crates/fj-viewer" [workspace.dependencies.fj-window] -version = "0.41.0" +version = "0.42.0" path = "crates/fj-window"