Skip to content

Commit

Permalink
Merge pull request #97 from sintefmath/dev
Browse files Browse the repository at this point in the history
Bump JLD2 and HYPRE compat
  • Loading branch information
moyner authored Oct 1, 2024
2 parents cf01c4a + 7b4f276 commit 3708d35
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Jutul"
uuid = "2b460a1a-8a2b-45b2-b125-b5c536396eb9"
authors = ["Olav Møyner <olav.moyner@gmail.com>"]
version = "0.2.38"
version = "0.2.39"

[deps]
AlgebraicMultigrid = "2169fc97-5a83-5252-b627-83903c6c433c"
Expand Down Expand Up @@ -69,9 +69,9 @@ ExprTools = "0.1.8"
ForwardDiff = "0.10.30"
GraphMakie = "0.5.3"
Graphs = "1.8.0"
HYPRE = "1.4.0"
HYPRE = "1.6.0"
ILUZero = "0.2.0"
JLD2 = "0.4.22"
JLD2 = "0.5"
KaHyPar = "0.3.0"
Krylov = "0.9.1"
LayeredLayouts = "0.2.5"
Expand Down
2 changes: 1 addition & 1 deletion src/NFVM/types.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ struct NFVMLinearDiscretization{T} <: NFVMDiscretization
end

function Base.show(io::IO, ft::NFVMLinearDiscretization{T}) where T
l, r = cell_pair(ft)
l, r = Jutul.cell_pair(ft)
print(io, "NFVMLinearDiscretization{$T} $(l)$(r)")
compact = get(io, :compact, false)
if !compact
Expand Down
2 changes: 1 addition & 1 deletion src/variables/scalarization.jl
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ end
"""
scalarize_primary_variables!(V::Vector{T}, model, state, pvars::NamedTuple) where T
Scalarize into array. See [scalarize_primary_variables](@ref) for more details.
Scalarize into array. See [`scalarize_primary_variables`](@ref) for more details.
"""
function scalarize_primary_variables!(V::Vector{ScalarizedJutulVariables{T}}, model, state, pvars::NamedTuple) where T
pvars_def = values(pvars)
Expand Down

2 comments on commit 3708d35

@moyner
Copy link
Member Author

@moyner moyner commented on 3708d35 Oct 1, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/116387

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.39 -m "<description of version>" 3708d35b16505fa65c784c4305d7b8a6cd6c52f5
git push origin v0.2.39

Please sign in to comment.