Skip to content

Commit

Permalink
Bump version, add stdlib compats
Browse files Browse the repository at this point in the history
  • Loading branch information
j-fu committed Dec 1, 2023
1 parent 661f00f commit 9b1880a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
9 changes: 6 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "VoronoiFVM"
uuid = "82b139dc-5afc-11e9-35da-9b9bdfd336f3"
authors = ["Jürgen Fuhrmann <[email protected]>", "Dilara Abdel", "Jan Weidner", "Alexander Seiler", "Patricio Farrell", "Matthias Liero"]
version = "1.14.0"
version = "1.15.0"

[deps]
BandedMatrices = "aae01518-5342-5314-be14-df237901396f"
Expand All @@ -24,9 +24,7 @@ SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
SparseDiffTools = "47a9eef4-7e08-11e9-0b38-333d64bd3804"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
SuiteSparse = "4607b0f0-06f3-5cda-b6b1-a6196a1729e9"
Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[compat]
BandedMatrices = "0.17,1"
Expand All @@ -38,10 +36,15 @@ ExtendableSparse = "1.2"
ForwardDiff = "0.10.35"
GridVisualize = "0.5.2,0.6.1,1"
JLD2 = "0.4.29"
LinearAlgebra = "1.6"
LinearSolve = "2.2"
Printf = "1.6"
Random = "1.6"
RecursiveArrayTools = "^2.14.2"
RecursiveFactorization = "0.2.18"
SparseArrays = "1.6"
SparseDiffTools = "^1.19, 2"
StaticArrays = "0.12,1"
Statistics = "1.6"
Symbolics = "^4.2, 5"
julia = "^1.6"
3 changes: 1 addition & 2 deletions docs/src/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@
## v1.15.0 Dec 1, 2023
- Adjusted time/embedding stepping scheme, added `num_final_steps` to [`VoronoiFVM.SolverControl`](@ref). This may lead to
sligthly different results when solving time dependent problems. Some unit test values have been adapted. Before,
accidentally very small time steps at the end of an evolution were possible.
accidentally, very small time steps at the end of an evolution were possible.

## v1.14.0 Nov 27, 2023
- Add `Δu_max_factor` and `Δt_decrease` to [`VoronoiFVM.SolverControl`](@ref).
Before (with values 2.0 and 0.5, respectively) the were fixed. New `Δu_max_factor=1.2` default.
- Add history to [`VoronoiFVM.TransientSolution`](@ref), prepare deprecation of `system.history`
- Add [`plothistory`](@ref) method

# Changes
## v1.13.0 July 24, 2023
- Add [`nodevolumes`](@ref) method

Expand Down

2 comments on commit 9b1880a

@j-fu
Copy link
Member Author

@j-fu j-fu commented on 9b1880a Dec 1, 2023

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

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 v1.15.0 -m "<description of version>" 9b1880a5629cc66d847638ab8209e11c3b57bc34
git push origin v1.15.0

Please sign in to comment.