diff --git a/.github/workflows/SpellCheck.yml b/.github/workflows/SpellCheck.yml index 731d9395a..303bf64a2 100644 --- a/.github/workflows/SpellCheck.yml +++ b/.github/workflows/SpellCheck.yml @@ -10,4 +10,4 @@ jobs: - name: Checkout Actions Repository uses: actions/checkout@v4 - name: Check spelling - uses: crate-ci/typos@v1.29.0 + uses: crate-ci/typos@v1.29.5 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a1c9b2038..5cd009433 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,10 +47,11 @@ jobs: os: - ubuntu-latest include: - # Also run tests on Windows and macOS-ARM, but only with the latest Julia release and minimum supported version - - version: 'min' + # Also run tests on Windows and macOS-ARM, but only with the latest Julia release and minimum supported version. + # Don't use 'min' version, which will ignore hotfixes, i.e. 1.10.0 will be used instead of e.g. 1.10.8. + - version: '1.10' os: windows-latest - - version: 'min' + - version: '1.10' os: macos-14 - version: '1' os: windows-latest diff --git a/Project.toml b/Project.toml index 753edcda7..36e83b983 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "TrixiParticles" uuid = "66699cd8-9c01-4e9d-a059-b96c86d16b3a" authors = ["erik.faulhaber <44124897+efaulhaber@users.noreply.github.com>"] -version = "0.2.6" +version = "0.2.7-dev" [deps] Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e" diff --git a/src/schemes/fluid/entropically_damped_sph/system.jl b/src/schemes/fluid/entropically_damped_sph/system.jl index 364816f7b..ca59b745f 100644 --- a/src/schemes/fluid/entropically_damped_sph/system.jl +++ b/src/schemes/fluid/entropically_damped_sph/system.jl @@ -45,7 +45,7 @@ See [Entropically Damped Artificial Compressibility for SPH](@ref edac) for more gravity-like source terms. - `surface_tension`: Surface tension model used for this SPH system. (default: no surface tension) - `surface_normal_method`: The surface normal method to be used for this SPH system. - (default: no surface normal method or ColorfieldSurfaceNormal() if a surface_tension model is used) + (default: no surface normal method or `ColorfieldSurfaceNormal()` if a surface_tension model is used) - `reference_particle_spacing`: The reference particle spacing used for weighting values at the boundary, which currently is only needed when using surface tension. diff --git a/src/schemes/fluid/weakly_compressible_sph/system.jl b/src/schemes/fluid/weakly_compressible_sph/system.jl index ba474be68..8f30aedc9 100644 --- a/src/schemes/fluid/weakly_compressible_sph/system.jl +++ b/src/schemes/fluid/weakly_compressible_sph/system.jl @@ -44,7 +44,7 @@ See [Weakly Compressible SPH](@ref wcsph) for more details on the method. gravity-like source terms. - `surface_tension`: Surface tension model used for this SPH system. (default: no surface tension) - `surface_normal_method`: The surface normal method to be used for this SPH system. - (default: no surface normal method or ColorfieldSurfaceNormal() if a surface_tension model is used) + (default: no surface normal method or `ColorfieldSurfaceNormal()` if a surface_tension model is used) - `reference_particle_spacing`: The reference particle spacing used for weighting values at the boundary, which currently is only needed when using surface tension.