diff --git a/CHANGELOG.md b/CHANGELOG.md index e25bdec2e..731c4be39 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,48 @@ # Fornjot - Changelog +## v0.44.0 (2023-04-25) + +### End-user improvements + +Improvements to Fornjot and its documentation that are visible to end users. + +*None this week. Busy working on the kernel!* + +### 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` + +- Clean up `Solid` validation code ([#1774]) +- Update and expand operations API ([#1775], [#1776], [#1777], [#1778], [#1779], [#1783]) +- Add some useful methods to `Cycle` ([#1780]) + +### Internal Improvements + +Improvements that are relevant to developers working on Fornjot itself. + +- Update dependencies ([#1773], [#1790]; thank you, [@dzvon]!) +- Turn `pretty_assertions` into a `dev` dependency ([#1781]; thank you, [@therealprof]!) +- Upgrade to Rust 1.69.0 ([#1782]) + +[#1773]: https://github.com/hannobraun/Fornjot/pull/1773 +[#1774]: https://github.com/hannobraun/Fornjot/pull/1774 +[#1775]: https://github.com/hannobraun/Fornjot/pull/1775 +[#1776]: https://github.com/hannobraun/Fornjot/pull/1776 +[#1777]: https://github.com/hannobraun/Fornjot/pull/1777 +[#1778]: https://github.com/hannobraun/Fornjot/pull/1778 +[#1779]: https://github.com/hannobraun/Fornjot/pull/1779 +[#1780]: https://github.com/hannobraun/Fornjot/pull/1780 +[#1781]: https://github.com/hannobraun/Fornjot/pull/1781 +[#1782]: https://github.com/hannobraun/Fornjot/pull/1782 +[#1783]: https://github.com/hannobraun/Fornjot/pull/1783 +[#1790]: https://github.com/hannobraun/Fornjot/pull/1790 + +[@dzvon]: https://github.com/dzvon +[@therealprof]: https://github.com/therealprof + + ## v0.43.0 (2023-04-18) ### End-user improvements diff --git a/Cargo.lock b/Cargo.lock index 0f25cac4d..fa2fad175 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1093,7 +1093,7 @@ dependencies = [ [[package]] name = "fj" -version = "0.43.0" +version = "0.44.0" dependencies = [ "anyhow", "backtrace", @@ -1104,7 +1104,7 @@ dependencies = [ [[package]] name = "fj-app" -version = "0.43.0" +version = "0.44.0" dependencies = [ "anyhow", "clap", @@ -1124,7 +1124,7 @@ dependencies = [ [[package]] name = "fj-export" -version = "0.43.0" +version = "0.44.0" dependencies = [ "fj-interop", "fj-math", @@ -1136,7 +1136,7 @@ dependencies = [ [[package]] name = "fj-host" -version = "0.43.0" +version = "0.44.0" dependencies = [ "cargo_metadata", "crossbeam-channel", @@ -1151,14 +1151,14 @@ dependencies = [ [[package]] name = "fj-interop" -version = "0.43.0" +version = "0.44.0" dependencies = [ "fj-math", ] [[package]] name = "fj-kernel" -version = "0.43.0" +version = "0.44.0" dependencies = [ "anyhow", "fj-interop", @@ -1175,7 +1175,7 @@ dependencies = [ [[package]] name = "fj-math" -version = "0.43.0" +version = "0.44.0" dependencies = [ "approx 0.5.1", "decorum", @@ -1188,7 +1188,7 @@ dependencies = [ [[package]] name = "fj-operations" -version = "0.43.0" +version = "0.44.0" dependencies = [ "fj", "fj-interop", @@ -1200,7 +1200,7 @@ dependencies = [ [[package]] name = "fj-proc" -version = "0.43.0" +version = "0.44.0" dependencies = [ "proc-macro2", "quote", @@ -1210,7 +1210,7 @@ dependencies = [ [[package]] name = "fj-viewer" -version = "0.43.0" +version = "0.44.0" dependencies = [ "bytemuck", "chrono", @@ -1231,7 +1231,7 @@ dependencies = [ [[package]] name = "fj-window" -version = "0.43.0" +version = "0.44.0" dependencies = [ "crossbeam-channel", "egui-winit", diff --git a/Cargo.toml b/Cargo.toml index 5013a7b34..60396eb28 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ default-members = [ [workspace.package] -version = "0.43.0" +version = "0.44.0" edition = "2021" description = """\ @@ -56,41 +56,41 @@ categories = ["encoding", "mathematics", "rendering"] [workspace.dependencies.fj] -version = "0.43.0" +version = "0.44.0" path = "crates/fj" [workspace.dependencies.fj-export] -version = "0.43.0" +version = "0.44.0" path = "crates/fj-export" [workspace.dependencies.fj-host] -version = "0.43.0" +version = "0.44.0" path = "crates/fj-host" [workspace.dependencies.fj-interop] -version = "0.43.0" +version = "0.44.0" path = "crates/fj-interop" [workspace.dependencies.fj-kernel] -version = "0.43.0" +version = "0.44.0" path = "crates/fj-kernel" [workspace.dependencies.fj-math] -version = "0.43.0" +version = "0.44.0" path = "crates/fj-math" [workspace.dependencies.fj-operations] -version = "0.43.0" +version = "0.44.0" path = "crates/fj-operations" [workspace.dependencies.fj-proc] -version = "0.43.0" +version = "0.44.0" path = "crates/fj-proc" [workspace.dependencies.fj-viewer] -version = "0.43.0" +version = "0.44.0" path = "crates/fj-viewer" [workspace.dependencies.fj-window] -version = "0.43.0" +version = "0.44.0" path = "crates/fj-window"