Skip to content

Commit

Permalink
Merge pull request #1544 from hannobraun/release
Browse files Browse the repository at this point in the history
Release v0.34.0
  • Loading branch information
hannobraun authored Jan 30, 2023
2 parents 780de59 + a3c3425 commit 89d59a4
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 22 deletions.
48 changes: 48 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,53 @@
# Fornjot - Changelog

## v0.34.0 (2023-01-30)

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

- Continue simplifying object graph around `HalfEdge` ([#1535], [#1536])
- Add more debug information to approximation ([#1537])
- Improve validation error messages ([#1540])
- Respect existing boundary when updating `HalfEdge` as line segment ([#1541])

#### `fj-window`

- Box event loop error variants ([#1539])

### Internal Improvements

Improvements that are relevant to developers working on Fornjot itself.

- Update dependencies ([#1528], [#1529], [#1530], [#1531], [#1533])
- Minimize scope of `unsafe` block ([#1538])
- Update release automation ([#1542])
- Upgrade to Rust 1.67.0 ([#1543])

[#1528]: https://github.com/hannobraun/Fornjot/pull/1528
[#1529]: https://github.com/hannobraun/Fornjot/pull/1529
[#1530]: https://github.com/hannobraun/Fornjot/pull/1530
[#1531]: https://github.com/hannobraun/Fornjot/pull/1531
[#1533]: https://github.com/hannobraun/Fornjot/pull/1533
[#1535]: https://github.com/hannobraun/Fornjot/pull/1535
[#1536]: https://github.com/hannobraun/Fornjot/pull/1536
[#1537]: https://github.com/hannobraun/Fornjot/pull/1537
[#1538]: https://github.com/hannobraun/Fornjot/pull/1538
[#1539]: https://github.com/hannobraun/Fornjot/pull/1539
[#1540]: https://github.com/hannobraun/Fornjot/pull/1540
[#1541]: https://github.com/hannobraun/Fornjot/pull/1541
[#1542]: https://github.com/hannobraun/Fornjot/pull/1542
[#1543]: https://github.com/hannobraun/Fornjot/pull/1543


## v0.33.0 (2023-01-23)

### 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.33.0"
version = "0.34.0"
edition = "2021"

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


[workspace.dependencies.fj]
version = "0.33.0"
version = "0.34.0"
path = "crates/fj"

[workspace.dependencies.fj-export]
version = "0.33.0"
version = "0.34.0"
path = "crates/fj-export"

[workspace.dependencies.fj-host]
version = "0.33.0"
version = "0.34.0"
path = "crates/fj-host"

[workspace.dependencies.fj-interop]
version = "0.33.0"
version = "0.34.0"
path = "crates/fj-interop"

[workspace.dependencies.fj-kernel]
version = "0.33.0"
version = "0.34.0"
path = "crates/fj-kernel"

[workspace.dependencies.fj-math]
version = "0.33.0"
version = "0.34.0"
path = "crates/fj-math"

[workspace.dependencies.fj-operations]
version = "0.33.0"
version = "0.34.0"
path = "crates/fj-operations"

[workspace.dependencies.fj-proc]
version = "0.33.0"
version = "0.34.0"
path = "crates/fj-proc"

[workspace.dependencies.fj-viewer]
version = "0.33.0"
version = "0.34.0"
path = "crates/fj-viewer"

[workspace.dependencies.fj-window]
version = "0.33.0"
version = "0.34.0"
path = "crates/fj-window"

0 comments on commit 89d59a4

Please sign in to comment.