Skip to content

Commit 6251a89

Browse files
committed
updated docs + included changelog entry
1 parent a2b8d6a commit 6251a89

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# CHANGES
22

3-
## v1.5.0 October 30, 2025
3+
## v1.5.0 November 03, 2025
44
- added type parameter to `PointEvaluator` so `lazy_interpolate!` is now accessible for automatic differentiation
5-
- added new `compute_interpolation_jacobian` function for computing Jacobians of interpolations between finite element spaces
5+
- added new `compute_lazy_interpolation_jacobian` function for computing Jacobians of interpolations between finite element spaces
6+
- added `H1Pk_to_HDIVRT0_interpolator` function for (faster) computation of interpolation matrix from `H1Pk`-conforming spaces into `HDIVRT0`-conforming spaces on the same grid
7+
- fixed interpolation of `HCURLN1` finite element
68

79
## v1.4.0 July 17, 2025
810
- added new weighted reconstruction operator `WeightedReconstruct` (so far only for H1BR{2})

docs/make.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ function make_all(; with_examples::Bool = true)
5050
doctest = true,
5151
pages = [
5252
"Home" => "index.md",
53+
"Changelog" => "changelog.md",
5354
"Index" => "package_index.md",
5455
"List of Finite Elements" => "fems.md",
5556
"Base Structures" => Any[

docs/src/changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
```@eval
2+
using Markdown
3+
Markdown.parse("""
4+
$(read("../../CHANGELOG.md",String))
5+
""")
6+
```

docs/src/interpolations.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,11 @@ lazy_interpolate!
3838
```
3939

4040
```@docs
41-
compute_interpolation_jacobian
41+
compute_lazy_interpolation_jacobian
42+
```
43+
44+
```@docs
45+
H1Pk_to_HDIVRT0_interpolator
4246
```
4347

4448
The following function continuously interpolates finite element function into a H1Pk space by

0 commit comments

Comments
 (0)