diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d61d6633..517d62638 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,57 @@ # Fornjot - Changelog +## v0.37.0 (2023-02-20) + +### End-user improvements + +Improvements to Fornjot and its documentation that are visible to end users. + +- Add UI element that shows model orientation ([#1573], [#1584]; thank you, [@erenoku]!) +- Don't panic, if model code creates empty sketch ([#1585]; thank you, [@tmayoff]!) + +### 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` + +- Rewrite parts of sweep code ([#1593]) +- Start consolidating redundant references to `Surface` ([#1596], [#1597], [#1598], [#1599]) + +#### `fj-math` + +- Make various minor improvements ([#1590]) +- Clean up and simplify `Arc` ([#1591], [#1592]) + +### Internal Improvements + +Improvements that are relevant to developers working on Fornjot itself. + +- Update release procedure ([#1576]) +- Update dependencies ([#1580], [#1582], [#1583], [#1587], [#1595]) + +[#1573]: https://github.com/hannobraun/Fornjot/pull/1573 +[#1576]: https://github.com/hannobraun/Fornjot/pull/1576 +[#1580]: https://github.com/hannobraun/Fornjot/pull/1580 +[#1582]: https://github.com/hannobraun/Fornjot/pull/1582 +[#1583]: https://github.com/hannobraun/Fornjot/pull/1583 +[#1584]: https://github.com/hannobraun/Fornjot/pull/1584 +[#1585]: https://github.com/hannobraun/Fornjot/pull/1585 +[#1587]: https://github.com/hannobraun/Fornjot/pull/1587 +[#1590]: https://github.com/hannobraun/Fornjot/pull/1590 +[#1591]: https://github.com/hannobraun/Fornjot/pull/1591 +[#1592]: https://github.com/hannobraun/Fornjot/pull/1592 +[#1593]: https://github.com/hannobraun/Fornjot/pull/1593 +[#1595]: https://github.com/hannobraun/Fornjot/pull/1595 +[#1596]: https://github.com/hannobraun/Fornjot/pull/1596 +[#1597]: https://github.com/hannobraun/Fornjot/pull/1597 +[#1598]: https://github.com/hannobraun/Fornjot/pull/1598 +[#1599]: https://github.com/hannobraun/Fornjot/pull/1599 + +[@erenoku]: https://github.com/erenoku +[@tmayoff]: https://github.com/tmayoff + + ## v0.36.0 (2023-02-13) ### End-user improvements diff --git a/Cargo.lock b/Cargo.lock index a3883c933..4fc90ae64 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1037,7 +1037,7 @@ dependencies = [ [[package]] name = "fj" -version = "0.36.0" +version = "0.37.0" dependencies = [ "anyhow", "fj-proc", @@ -1047,7 +1047,7 @@ dependencies = [ [[package]] name = "fj-app" -version = "0.36.0" +version = "0.37.0" dependencies = [ "anyhow", "clap", @@ -1067,7 +1067,7 @@ dependencies = [ [[package]] name = "fj-export" -version = "0.36.0" +version = "0.37.0" dependencies = [ "fj-interop", "fj-math", @@ -1078,7 +1078,7 @@ dependencies = [ [[package]] name = "fj-host" -version = "0.36.0" +version = "0.37.0" dependencies = [ "cargo_metadata", "crossbeam-channel", @@ -1094,14 +1094,14 @@ dependencies = [ [[package]] name = "fj-interop" -version = "0.36.0" +version = "0.37.0" dependencies = [ "fj-math", ] [[package]] name = "fj-kernel" -version = "0.36.0" +version = "0.37.0" dependencies = [ "anyhow", "fj-interop", @@ -1118,7 +1118,7 @@ dependencies = [ [[package]] name = "fj-math" -version = "0.36.0" +version = "0.37.0" dependencies = [ "approx 0.5.1", "decorum", @@ -1131,7 +1131,7 @@ dependencies = [ [[package]] name = "fj-operations" -version = "0.36.0" +version = "0.37.0" dependencies = [ "fj", "fj-interop", @@ -1142,7 +1142,7 @@ dependencies = [ [[package]] name = "fj-proc" -version = "0.36.0" +version = "0.37.0" dependencies = [ "fj", "proc-macro2", @@ -1153,7 +1153,7 @@ dependencies = [ [[package]] name = "fj-viewer" -version = "0.36.0" +version = "0.37.0" dependencies = [ "bytemuck", "chrono", @@ -1175,7 +1175,7 @@ dependencies = [ [[package]] name = "fj-window" -version = "0.36.0" +version = "0.37.0" dependencies = [ "crossbeam-channel", "egui-winit", diff --git a/Cargo.toml b/Cargo.toml index ea467a83f..876245bb3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ default-members = [ [workspace.package] -version = "0.36.0" +version = "0.37.0" edition = "2021" description = """\ @@ -56,41 +56,41 @@ categories = ["encoding", "mathematics", "rendering"] [workspace.dependencies.fj] -version = "0.36.0" +version = "0.37.0" path = "crates/fj" [workspace.dependencies.fj-export] -version = "0.36.0" +version = "0.37.0" path = "crates/fj-export" [workspace.dependencies.fj-host] -version = "0.36.0" +version = "0.37.0" path = "crates/fj-host" [workspace.dependencies.fj-interop] -version = "0.36.0" +version = "0.37.0" path = "crates/fj-interop" [workspace.dependencies.fj-kernel] -version = "0.36.0" +version = "0.37.0" path = "crates/fj-kernel" [workspace.dependencies.fj-math] -version = "0.36.0" +version = "0.37.0" path = "crates/fj-math" [workspace.dependencies.fj-operations] -version = "0.36.0" +version = "0.37.0" path = "crates/fj-operations" [workspace.dependencies.fj-proc] -version = "0.36.0" +version = "0.37.0" path = "crates/fj-proc" [workspace.dependencies.fj-viewer] -version = "0.36.0" +version = "0.37.0" path = "crates/fj-viewer" [workspace.dependencies.fj-window] -version = "0.36.0" +version = "0.37.0" path = "crates/fj-window"