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.13.0 #1007

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

## v0.13.0 (2022-08-29)

### End-user improvements

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

- Update usage documentation in README ([#994])

### Ecosystem improvements

Improvements to the Fornjot ecosystem that are relevant to developers who are building on top of Fornjot components.

#### `fj-host`

- Improve comments and documentation ([#988])

#### `fj-kernel`

- Expand intersection tests ([#977], [#978])
- Extract `Shell` from `Solid` ([#983])
- Clean up sweep API ([#984], [#989], [#991])
- Add builder API for `Sketch` ([#992])
- Add `GlobalEdge` ([#998], [#999])
- Make some minor cleanups ([#1000], [#1001], [#1005])
- Clean up `approx` module ([#1003], [#1006])

#### `fj-math`

- Make minor API additions ([#1004])

#### `fj-viewer`/`fj-window`

- Upgrade dependencies related to wgpu/winit ([#975], [#979])

### Internal Improvements

Improvements that are relevant to developers working on Fornjot itself.

- Update dependencies ([#964], [#965], [#966], [#968], [#969], [#970], [#974])
- Update release procedure ([#972])
- Upgrade to Rust 1.63.0 ([#973])
- Expand release automation ([#981], [#982])
- Add usage documentation to `CONTRIBUTING.md` ([#995])

[#961]: https://github.com/hannobraun/Fornjot/pull/961
[#962]: https://github.com/hannobraun/Fornjot/pull/962
[#964]: https://github.com/hannobraun/Fornjot/pull/964
[#965]: https://github.com/hannobraun/Fornjot/pull/965
[#966]: https://github.com/hannobraun/Fornjot/pull/966
[#968]: https://github.com/hannobraun/Fornjot/pull/968
[#969]: https://github.com/hannobraun/Fornjot/pull/969
[#970]: https://github.com/hannobraun/Fornjot/pull/970
[#972]: https://github.com/hannobraun/Fornjot/pull/972
[#973]: https://github.com/hannobraun/Fornjot/pull/973
[#974]: https://github.com/hannobraun/Fornjot/pull/974
[#975]: https://github.com/hannobraun/Fornjot/pull/975
[#977]: https://github.com/hannobraun/Fornjot/pull/977
[#978]: https://github.com/hannobraun/Fornjot/pull/978
[#979]: https://github.com/hannobraun/Fornjot/pull/979
[#981]: https://github.com/hannobraun/Fornjot/pull/981
[#982]: https://github.com/hannobraun/Fornjot/pull/982
[#983]: https://github.com/hannobraun/Fornjot/pull/983
[#984]: https://github.com/hannobraun/Fornjot/pull/984
[#988]: https://github.com/hannobraun/Fornjot/pull/988
[#989]: https://github.com/hannobraun/Fornjot/pull/989
[#991]: https://github.com/hannobraun/Fornjot/pull/991
[#992]: https://github.com/hannobraun/Fornjot/pull/992
[#994]: https://github.com/hannobraun/Fornjot/pull/994
[#995]: https://github.com/hannobraun/Fornjot/pull/995
[#998]: https://github.com/hannobraun/Fornjot/pull/998
[#999]: https://github.com/hannobraun/Fornjot/pull/999
[#1000]: https://github.com/hannobraun/Fornjot/pull/1000
[#1001]: https://github.com/hannobraun/Fornjot/pull/1001
[#1003]: https://github.com/hannobraun/Fornjot/pull/1003
[#1004]: https://github.com/hannobraun/Fornjot/pull/1004
[#1005]: https://github.com/hannobraun/Fornjot/pull/1005
[#1006]: https://github.com/hannobraun/Fornjot/pull/1006


## v0.12.0 (2022-08-22)

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

20 changes: 10 additions & 10 deletions crates/fj-app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fj-app"
version = "0.12.0"
version = "0.13.0"
edition = "2021"

description = """\
Expand All @@ -27,39 +27,39 @@ version = "0.10.6"
features = ["env", "toml"]

[dependencies.fj]
version = "0.12.0"
version = "0.13.0"
path = "../fj"

[dependencies.fj-export]
version = "0.12.0"
version = "0.13.0"
path = "../fj-export"

[dependencies.fj-host]
version = "0.12.0"
version = "0.13.0"
path = "../fj-host"

[dependencies.fj-interop]
version = "0.12.0"
version = "0.13.0"
path = "../fj-interop"

[dependencies.fj-kernel]
version = "0.12.0"
version = "0.13.0"
path = "../fj-kernel"

[dependencies.fj-math]
version = "0.12.0"
version = "0.13.0"
path = "../fj-math"

[dependencies.fj-operations]
version = "0.12.0"
version = "0.13.0"
path = "../fj-operations"

[dependencies.fj-viewer]
version = "0.12.0"
version = "0.13.0"
path = "../fj-viewer"

[dependencies.fj-window]
version = "0.12.0"
version = "0.13.0"
path = "../fj-window"

[dependencies.serde]
Expand Down
6 changes: 3 additions & 3 deletions crates/fj-export/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fj-export"
version = "0.12.0"
version = "0.13.0"
edition = "2021"

description = """\
Expand All @@ -21,9 +21,9 @@ threemf = "0.3.1"
stl = "0.2.1"

[dependencies.fj-interop]
version = "0.12.0"
version = "0.13.0"
path = "../fj-interop"

[dependencies.fj-math]
version = "0.12.0"
version = "0.13.0"
path = "../fj-math"
6 changes: 3 additions & 3 deletions crates/fj-host/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fj-host"
version = "0.12.0"
version = "0.13.0"
edition = "2021"

description = """\
Expand All @@ -22,9 +22,9 @@ thiserror = "1.0.32"
cargo_metadata = "0.15.0"

[dependencies.fj]
version = "0.12.0"
version = "0.13.0"
path = "../fj"

[dependencies.fj-interop]
version = "0.12.0"
version = "0.13.0"
path = "../fj-interop"
4 changes: 2 additions & 2 deletions crates/fj-interop/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fj-interop"
version = "0.12.0"
version = "0.13.0"
edition = "2021"

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

[dependencies.fj-math]
path = "../fj-math"
version = "0.12.0"
version = "0.13.0"
6 changes: 3 additions & 3 deletions crates/fj-kernel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fj-kernel"
version = "0.12.0"
version = "0.13.0"
edition = "2021"

description = """\
Expand All @@ -26,11 +26,11 @@ spade = "2.0.0"
thiserror = "1.0.32"

[dependencies.fj-interop]
version = "0.12.0"
version = "0.13.0"
path = "../fj-interop"

[dependencies.fj-math]
version = "0.12.0"
version = "0.13.0"
path = "../fj-math"


Expand Down
2 changes: 1 addition & 1 deletion crates/fj-math/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fj-math"
version = "0.12.0"
version = "0.13.0"
edition = "2021"

description = """\
Expand Down
10 changes: 5 additions & 5 deletions crates/fj-operations/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fj-operations"
version = "0.12.0"
version = "0.13.0"
edition = "2021"

description = """\
Expand All @@ -19,17 +19,17 @@ categories = ["encoding", "mathematics", "rendering"]
thiserror = "1.0.32"

[dependencies.fj]
version = "0.12.0"
version = "0.13.0"
path = "../fj"

[dependencies.fj-math]
version = "0.12.0"
version = "0.13.0"
path = "../fj-math"

[dependencies.fj-interop]
version = "0.12.0"
version = "0.13.0"
path = "../fj-interop"

[dependencies.fj-kernel]
version = "0.12.0"
version = "0.13.0"
path = "../fj-kernel"
2 changes: 1 addition & 1 deletion crates/fj-proc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fj-proc"
version = "0.12.0"
version = "0.13.0"
edition = "2021"

description = """\
Expand Down
6 changes: 3 additions & 3 deletions crates/fj-viewer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fj-viewer"
version = "0.12.0"
version = "0.13.0"
edition = "2021"

description = """\
Expand All @@ -24,11 +24,11 @@ wgpu = "0.13.1"
wgpu_glyph = "0.17.0"

[dependencies.fj-interop]
version = "0.12.0"
version = "0.13.0"
path = "../fj-interop"

[dependencies.fj-math]
version = "0.12.0"
version = "0.13.0"
path = "../fj-math"

[dependencies.egui]
Expand Down
Loading