Skip to content

Commit

Permalink
Bump version, compat and fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
moyner committed Jan 8, 2025
1 parent 35f7e8c commit b3d73aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "JutulDarcy"
uuid = "82210473-ab04-4dce-b31b-11573c4f8e0a"
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 @@ -68,7 +68,7 @@ LazyArtifacts = "1"
LinearAlgebra = "1"
LoopVectorization = "0.12.115"
MAT = "0.10.3"
MultiComponentFlash = "1.1.15"
MultiComponentFlash = "1.1.16"
OrderedCollections = "1.6.2"
PartitionedArrays = "0.5"
Polyester = "0.6.11, 0.7.3"
Expand Down
4 changes: 2 additions & 2 deletions test/multimodel.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ function test_compositional_with_wells(; kwarg...)
@testset "Reservoir" begin
res = states[end][:Reservoir]
p = res[:Pressure]
p_ref = [5.217526602862003e6, 5.180267757745085e6, 5.137145631361415e6]
@test isapprox(p, p_ref, rtol = 1e-4)
p_ref = [5.218139052839837e6, 5.180811416153696e6, 5.137566116526595e6]
@test isapprox(p, p_ref, rtol = 1e-3)
z = res[:OverallMoleFractions]
z_ref = [
0.6032429704979841 0.521568527073734 0.5000266982944569;
Expand Down

4 comments on commit b3d73aa

@moyner
Copy link
Member Author

@moyner moyner commented on b3d73aa Jan 8, 2025

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/122623

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>" b3d73aa6e8e21be09afcd79f50554bb7d0c9591f
git push origin v0.2.39

@moyner
Copy link
Member Author

@moyner moyner commented on b3d73aa Jan 8, 2025

Choose a reason for hiding this comment

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

@JuliaRegistrator register

Release notes:

Breaking changes

  • Wells are no longer multisegment wells by default.
  • Changes in the inner compute_well_qoi interface (now takes in well state and facility steate instead of global state)

Other updates

  • Function for getting Brooks-Corey capillary pressure (brooks_corey_pc)
  • Doc improvements
  • Improvements to accuracy and robustness for compositional models
  • Support for VCRIT as alternative to ZCRIT
  • Support for storing phase fluxes (store_total_fluxes/store_phase_fluxes). Not exported, name subject to change.

@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 updated: JuliaRegistries/General/122623

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>" b3d73aa6e8e21be09afcd79f50554bb7d0c9591f
git push origin v0.2.39

Please sign in to comment.