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.40.0 #1668

Merged
merged 2 commits into from
Mar 13, 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
42 changes: 42 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,47 @@
# Fornjot - Changelog

## v0.40.0 (2023-03-13)

### 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`

- Unify `HalfEdge` and `PartialHalfEdge` ([#1660], [#1661], [#1662], [#1663], [#1664])
- Rewrite `HalfEdgeBuilder` ([#1665])

### Internal Improvements

Improvements that are relevant to developers working on Fornjot itself.

- Update dependencies ([#1651], [#1652], [#1653], [#1654], [#1655], [#1656], [#1657], [#1658], [#1659])
- Update list of sponsors in README ([#1667])

[#1651]: https://github.com/hannobraun/Fornjot/pull/1651
[#1652]: https://github.com/hannobraun/Fornjot/pull/1652
[#1653]: https://github.com/hannobraun/Fornjot/pull/1653
[#1654]: https://github.com/hannobraun/Fornjot/pull/1654
[#1655]: https://github.com/hannobraun/Fornjot/pull/1655
[#1656]: https://github.com/hannobraun/Fornjot/pull/1656
[#1657]: https://github.com/hannobraun/Fornjot/pull/1657
[#1658]: https://github.com/hannobraun/Fornjot/pull/1658
[#1659]: https://github.com/hannobraun/Fornjot/pull/1659
[#1660]: https://github.com/hannobraun/Fornjot/pull/1660
[#1661]: https://github.com/hannobraun/Fornjot/pull/1661
[#1662]: https://github.com/hannobraun/Fornjot/pull/1662
[#1663]: https://github.com/hannobraun/Fornjot/pull/1663
[#1664]: https://github.com/hannobraun/Fornjot/pull/1664
[#1665]: https://github.com/hannobraun/Fornjot/pull/1665
[#1667]: https://github.com/hannobraun/Fornjot/pull/1667


## v0.39.0 (2023-03-06)

### 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.39.0"
version = "0.40.0"
edition = "2021"

description = """\
Expand All @@ -56,41 +56,41 @@ categories = ["encoding", "mathematics", "rendering"]


[workspace.dependencies.fj]
version = "0.39.0"
version = "0.40.0"
path = "crates/fj"

[workspace.dependencies.fj-export]
version = "0.39.0"
version = "0.40.0"
path = "crates/fj-export"

[workspace.dependencies.fj-host]
version = "0.39.0"
version = "0.40.0"
path = "crates/fj-host"

[workspace.dependencies.fj-interop]
version = "0.39.0"
version = "0.40.0"
path = "crates/fj-interop"

[workspace.dependencies.fj-kernel]
version = "0.39.0"
version = "0.40.0"
path = "crates/fj-kernel"

[workspace.dependencies.fj-math]
version = "0.39.0"
version = "0.40.0"
path = "crates/fj-math"

[workspace.dependencies.fj-operations]
version = "0.39.0"
version = "0.40.0"
path = "crates/fj-operations"

[workspace.dependencies.fj-proc]
version = "0.39.0"
version = "0.40.0"
path = "crates/fj-proc"

[workspace.dependencies.fj-viewer]
version = "0.39.0"
version = "0.40.0"
path = "crates/fj-viewer"

[workspace.dependencies.fj-window]
version = "0.39.0"
version = "0.40.0"
path = "crates/fj-window"