Skip to content

Commit

Permalink
Merge pull request #1464 from hannobraun/release
Browse files Browse the repository at this point in the history
Release v0.29.0
  • Loading branch information
hannobraun authored Dec 19, 2022
2 parents 6cf7d9b + 52e0627 commit 941359d
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 22 deletions.
49 changes: 49 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,54 @@
# Fornjot - Changelog

## v0.29.0 (2022-12-19)

### End-user improvements

Improvements to Fornjot and its documentation that are visible to end users.

- Fix crash when minimizing window on Windows ([#1447]; thank you, [@kazatsuyu]!)

### 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 cleanup of object construction code ([#1445], [#1446], [#1448], [#1449], [#1450], [#1451], [#1452], [#1453], [#1456], [#1457])
- Fix doc comment ([#1458])

#### `fj-math`

- Return line coordinates from `Line::from_points` ([#1455])

### Internal Improvements

Improvements that are relevant to developers working on Fornjot itself.

- Update dependencies ([#1437], [#1438], [#1440], [#1443], [#1444])

[#1437]: https://github.com/hannobraun/Fornjot/pull/1437
[#1438]: https://github.com/hannobraun/Fornjot/pull/1438
[#1440]: https://github.com/hannobraun/Fornjot/pull/1440
[#1443]: https://github.com/hannobraun/Fornjot/pull/1443
[#1444]: https://github.com/hannobraun/Fornjot/pull/1444
[#1445]: https://github.com/hannobraun/Fornjot/pull/1445
[#1446]: https://github.com/hannobraun/Fornjot/pull/1446
[#1447]: https://github.com/hannobraun/Fornjot/pull/1447
[#1448]: https://github.com/hannobraun/Fornjot/pull/1448
[#1449]: https://github.com/hannobraun/Fornjot/pull/1449
[#1450]: https://github.com/hannobraun/Fornjot/pull/1450
[#1451]: https://github.com/hannobraun/Fornjot/pull/1451
[#1452]: https://github.com/hannobraun/Fornjot/pull/1452
[#1453]: https://github.com/hannobraun/Fornjot/pull/1453
[#1455]: https://github.com/hannobraun/Fornjot/pull/1455
[#1456]: https://github.com/hannobraun/Fornjot/pull/1456
[#1457]: https://github.com/hannobraun/Fornjot/pull/1457
[#1458]: https://github.com/hannobraun/Fornjot/pull/1458

[@kazatsuyu]: https://github.com/kazatsuyu


## v0.28.0 (2022-12-12)

### 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.28.0"
version = "0.29.0"
edition = "2021"

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


[workspace.dependencies.fj]
version = "0.28.0"
version = "0.29.0"
path = "crates/fj"

[workspace.dependencies.fj-export]
version = "0.28.0"
version = "0.29.0"
path = "crates/fj-export"

[workspace.dependencies.fj-host]
version = "0.28.0"
version = "0.29.0"
path = "crates/fj-host"

[workspace.dependencies.fj-interop]
version = "0.28.0"
version = "0.29.0"
path = "crates/fj-interop"

[workspace.dependencies.fj-kernel]
version = "0.28.0"
version = "0.29.0"
path = "crates/fj-kernel"

[workspace.dependencies.fj-math]
version = "0.28.0"
version = "0.29.0"
path = "crates/fj-math"

[workspace.dependencies.fj-operations]
version = "0.28.0"
version = "0.29.0"
path = "crates/fj-operations"

[workspace.dependencies.fj-proc]
version = "0.28.0"
version = "0.29.0"
path = "crates/fj-proc"

[workspace.dependencies.fj-viewer]
version = "0.28.0"
version = "0.29.0"
path = "crates/fj-viewer"

[workspace.dependencies.fj-window]
version = "0.28.0"
version = "0.29.0"
path = "crates/fj-window"

0 comments on commit 941359d

Please sign in to comment.