Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.37.0 #1600

Merged
merged 2 commits into from
Feb 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
22 changes: 11 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ default-members = [


[workspace.package]
version = "0.36.0"
version = "0.37.0"
edition = "2021"

description = """\
Expand All @@ -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"