Skip to content

Commit

Permalink
Merge pull request #962 from hannobraun/release
Browse files Browse the repository at this point in the history
Release v0.12.0
  • Loading branch information
hannobraun authored Aug 22, 2022
2 parents bef2ed7 + e263dbb commit 2c8805f
Show file tree
Hide file tree
Showing 13 changed files with 117 additions and 49 deletions.
68 changes: 68 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,73 @@
# Fornjot - Changelog

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

### End-user improvements

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

- Display the last few status updates ([#919], [#945], [#952]; thank you, [@devanlooches]!)
- Add table of contents to README ([#942])
- Display model compile times in status updates ([#960]; thank you, [@connor-lennox]!)

### Ecosystem improvements

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

#### `fj-kernel`

- Add `Surface` to `Cycle` ([#939])
- Clean up and expand intersection testing code ([#940], [#941], [#946], [#947], [#948], [#949], [#950], [#951])

### Internal Improvements

Improvements that are relevant to developers working on Fornjot itself.

- Switch to model-driven host API ([#885], [#934]; thank you, [@Michael-F-Bryan]!)
- Update list of sponsors in README ([#921], [#961])
- Update dependencies ([#922], [#923], [#924], [#925], [#926], [#928], [#929], [#930], [#931], [#933], [#953], [#954], [#956], [#957], [#958], [#959])
- Update release procedure ([#932])

[#885]: https://github.com/hannobraun/Fornjot/pull/885
[#919]: https://github.com/hannobraun/Fornjot/pull/919
[#921]: https://github.com/hannobraun/Fornjot/pull/921
[#922]: https://github.com/hannobraun/Fornjot/pull/922
[#923]: https://github.com/hannobraun/Fornjot/pull/923
[#924]: https://github.com/hannobraun/Fornjot/pull/924
[#925]: https://github.com/hannobraun/Fornjot/pull/925
[#926]: https://github.com/hannobraun/Fornjot/pull/926
[#928]: https://github.com/hannobraun/Fornjot/pull/928
[#929]: https://github.com/hannobraun/Fornjot/pull/929
[#930]: https://github.com/hannobraun/Fornjot/pull/930
[#931]: https://github.com/hannobraun/Fornjot/pull/931
[#932]: https://github.com/hannobraun/Fornjot/pull/932
[#933]: https://github.com/hannobraun/Fornjot/pull/933
[#934]: https://github.com/hannobraun/Fornjot/pull/934
[#939]: https://github.com/hannobraun/Fornjot/pull/939
[#940]: https://github.com/hannobraun/Fornjot/pull/940
[#941]: https://github.com/hannobraun/Fornjot/pull/941
[#942]: https://github.com/hannobraun/Fornjot/pull/942
[#945]: https://github.com/hannobraun/Fornjot/pull/945
[#946]: https://github.com/hannobraun/Fornjot/pull/946
[#947]: https://github.com/hannobraun/Fornjot/pull/947
[#948]: https://github.com/hannobraun/Fornjot/pull/948
[#949]: https://github.com/hannobraun/Fornjot/pull/949
[#950]: https://github.com/hannobraun/Fornjot/pull/950
[#951]: https://github.com/hannobraun/Fornjot/pull/951
[#952]: https://github.com/hannobraun/Fornjot/pull/952
[#953]: https://github.com/hannobraun/Fornjot/pull/953
[#954]: https://github.com/hannobraun/Fornjot/pull/954
[#956]: https://github.com/hannobraun/Fornjot/pull/956
[#957]: https://github.com/hannobraun/Fornjot/pull/957
[#958]: https://github.com/hannobraun/Fornjot/pull/958
[#959]: https://github.com/hannobraun/Fornjot/pull/959
[#960]: https://github.com/hannobraun/Fornjot/pull/960
[#961]: https://github.com/hannobraun/Fornjot/pull/961

[@connor-lennox]: https://github.com/connor-lennox
[@devanlooches]: https://github.com/devanlooches
[@Michael-F-Bryan]: https://github.com/Michael-F-Bryan

## v0.11.0 (2022-08-08)

### 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.11.0"
version = "0.12.0"
edition = "2021"

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

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

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

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

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

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

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

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

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

[dependencies.fj-window]
version = "0.11.0"
version = "0.12.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.11.0"
version = "0.12.0"
edition = "2021"

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

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

[dependencies.fj-math]
version = "0.11.0"
version = "0.12.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.11.0"
version = "0.12.0"
edition = "2021"

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

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

[dependencies.fj-interop]
version = "0.11.0"
version = "0.12.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.11.0"
version = "0.12.0"
edition = "2021"

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

[dependencies.fj-math]
path = "../fj-math"
version = "0.11.0"
version = "0.12.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.11.0"
version = "0.12.0"
edition = "2021"

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

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

[dependencies.fj-math]
version = "0.11.0"
version = "0.12.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.11.0"
version = "0.12.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.11.0"
version = "0.12.0"
edition = "2021"

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

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

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

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

[dependencies.fj-kernel]
version = "0.11.0"
version = "0.12.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.11.0"
version = "0.12.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.11.0"
version = "0.12.0"
edition = "2021"

description = """\
Expand All @@ -24,11 +24,11 @@ wgpu = "0.12.0"
wgpu_glyph = "0.16.0"

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

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

[dependencies.egui]
Expand Down
Loading

0 comments on commit 2c8805f

Please sign in to comment.