Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small fixes. changelog, ci, nightly->pre #136

Merged
merged 4 commits into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: ci
name: linux-macos-windows
on:
pull_request:
branches:
Expand All @@ -17,7 +17,7 @@ jobs:
version:
- 'lts' # Replace this with the minimum Julia version that your package supports. E.g. if your package requires Julia 1.5 or higher, change this to '1.5'.
- '1' # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia.
- 'nightly'
# - 'pre'
os:
- ubuntu-latest
- windows-latest
Expand All @@ -31,7 +31,7 @@ jobs:
arch: aarch64
- os: windows-latest
arch: aarch64
- os: macOS-13
- os: macOS-13
arch: aarch64
- os: macOS-14
arch: x64
Expand Down Expand Up @@ -79,4 +79,3 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}

7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
- use `precs` based linear solver API, see https://github.com/SciML/LinearSolve.jl/pull/514
- stop re-exporting ForwardDiff.value
- try to remove type piracies

## v2.1.0 October 23, 2024
- Features:
- Add VoronoiFVMExtendableFEMBaseExt extension allowing to use velocity fields caculated with [ExtendableFEM](https://github.com/chmerdon/ExtendableFEM.jl) in convection-diffusion problems

## v2.0.2 October 12, 2024
- Bugfixes
- replace internally used `values` and `vec` methods by new `dofs`
Expand Down Expand Up @@ -37,7 +40,7 @@
### Modified
- Sparse solver default for Float64 in all space dimensions is now UMFPACKFactorization. For all other
number types it is SparspakFactorization. Before it was KLU for 1D, Sparspak for 2D an UMFPACK for 3D.

## v1.25.0, Sept 9, 2024
- [`VoronoiFVM.Physics`](@ref) callbacks (`flux`, `storage`, etc.) without `data` argument are now deprecated

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
VoronoiFVM.jl
===============

[![Build status](https://github.com/j-fu/VoronoiFVM.jl/workflows/linux-macos-windows/badge.svg)](https://github.com/j-fu/VoronoiFVM.jl/actions)
[![Build status](https://github.com/j-fu/VoronoiFVM.jl/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/j-fu/VoronoiFVM.jl/actions/workflows/ci.yml?query=branch%3Amaster)
[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://j-fu.github.io/VoronoiFVM.jl/stable)
[![](https://img.shields.io/badge/docs-dev-blue.svg)](https://j-fu.github.io/VoronoiFVM.jl/dev)
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.3529808.svg)](https://doi.org/10.5281/zenodo.3529808)
Expand Down Expand Up @@ -33,7 +33,7 @@ VoronoiFVM.jl and most of these packages are part of the meta package [PDELib.j
- [ExtendableFEM.jl](https://github.com/chmerdon/ExtendableFEM.jl): finite element library implementing gradient robust FEM
from the same package base by Ch. Merdon
- [SkeelBerzins.jl](https://github.com/gregoirepourtier/SkeelBerzins.jl): a Julian variation on Matlab's `pdepe` API
- [Trixi.jl](https://github.com/trixi-framework/Trixi.jl): numerical simulation framework for hyperbolic conservation laws
- [Trixi.jl](https://github.com/trixi-framework/Trixi.jl): numerical simulation framework for hyperbolic conservation laws
- [GridAP.jl](https://github.com/gridap/Gridap.jl) Grid-based approximation of partial differential equations in Julia
- [Ferrite.jl](https://github.com/Ferrite-FEM/Ferrite.jl) Finite element toolbox for Julia
- [FinEtools.jl](https://github.com/PetrKryslUCSD/FinEtools.jl) Finite element tools for Julia
Expand Down
120 changes: 0 additions & 120 deletions test/xgrid/Example120_ThreeRegions1D.jl

This file was deleted.

117 changes: 0 additions & 117 deletions test/xgrid/Example121_PoissonPointCharge1D.jl

This file was deleted.

82 changes: 0 additions & 82 deletions test/xgrid/Example202_Laplace2D_Unstructured.jl

This file was deleted.

Loading
Loading