Skip to content

Commit bf3b3ed

Browse files
authored
Merge pull request #1668 from hannobraun/release
Release v0.40.0
2 parents 3438d8f + e49b582 commit bf3b3ed

File tree

3 files changed

+64
-22
lines changed

3 files changed

+64
-22
lines changed

CHANGELOG.md

+42
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,47 @@
11
# Fornjot - Changelog
22

3+
## v0.40.0 (2023-03-13)
4+
5+
### End-user improvements
6+
7+
Improvements to Fornjot and its documentation that are visible to end users.
8+
9+
*None this week. Busy working on the kernel!*
10+
11+
### Ecosystem improvements
12+
13+
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.
14+
15+
#### `fj-kernel`
16+
17+
- Unify `HalfEdge` and `PartialHalfEdge` ([#1660], [#1661], [#1662], [#1663], [#1664])
18+
- Rewrite `HalfEdgeBuilder` ([#1665])
19+
20+
### Internal Improvements
21+
22+
Improvements that are relevant to developers working on Fornjot itself.
23+
24+
- Update dependencies ([#1651], [#1652], [#1653], [#1654], [#1655], [#1656], [#1657], [#1658], [#1659])
25+
- Update list of sponsors in README ([#1667])
26+
27+
[#1651]: https://github.com/hannobraun/Fornjot/pull/1651
28+
[#1652]: https://github.com/hannobraun/Fornjot/pull/1652
29+
[#1653]: https://github.com/hannobraun/Fornjot/pull/1653
30+
[#1654]: https://github.com/hannobraun/Fornjot/pull/1654
31+
[#1655]: https://github.com/hannobraun/Fornjot/pull/1655
32+
[#1656]: https://github.com/hannobraun/Fornjot/pull/1656
33+
[#1657]: https://github.com/hannobraun/Fornjot/pull/1657
34+
[#1658]: https://github.com/hannobraun/Fornjot/pull/1658
35+
[#1659]: https://github.com/hannobraun/Fornjot/pull/1659
36+
[#1660]: https://github.com/hannobraun/Fornjot/pull/1660
37+
[#1661]: https://github.com/hannobraun/Fornjot/pull/1661
38+
[#1662]: https://github.com/hannobraun/Fornjot/pull/1662
39+
[#1663]: https://github.com/hannobraun/Fornjot/pull/1663
40+
[#1664]: https://github.com/hannobraun/Fornjot/pull/1664
41+
[#1665]: https://github.com/hannobraun/Fornjot/pull/1665
42+
[#1667]: https://github.com/hannobraun/Fornjot/pull/1667
43+
44+
345
## v0.39.0 (2023-03-06)
446

547
### End-user improvements

Cargo.lock

+11-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+11-11
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ default-members = [
4040

4141

4242
[workspace.package]
43-
version = "0.39.0"
43+
version = "0.40.0"
4444
edition = "2021"
4545

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

5757

5858
[workspace.dependencies.fj]
59-
version = "0.39.0"
59+
version = "0.40.0"
6060
path = "crates/fj"
6161

6262
[workspace.dependencies.fj-export]
63-
version = "0.39.0"
63+
version = "0.40.0"
6464
path = "crates/fj-export"
6565

6666
[workspace.dependencies.fj-host]
67-
version = "0.39.0"
67+
version = "0.40.0"
6868
path = "crates/fj-host"
6969

7070
[workspace.dependencies.fj-interop]
71-
version = "0.39.0"
71+
version = "0.40.0"
7272
path = "crates/fj-interop"
7373

7474
[workspace.dependencies.fj-kernel]
75-
version = "0.39.0"
75+
version = "0.40.0"
7676
path = "crates/fj-kernel"
7777

7878
[workspace.dependencies.fj-math]
79-
version = "0.39.0"
79+
version = "0.40.0"
8080
path = "crates/fj-math"
8181

8282
[workspace.dependencies.fj-operations]
83-
version = "0.39.0"
83+
version = "0.40.0"
8484
path = "crates/fj-operations"
8585

8686
[workspace.dependencies.fj-proc]
87-
version = "0.39.0"
87+
version = "0.40.0"
8888
path = "crates/fj-proc"
8989

9090
[workspace.dependencies.fj-viewer]
91-
version = "0.39.0"
91+
version = "0.40.0"
9292
path = "crates/fj-viewer"
9393

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

0 commit comments

Comments
 (0)