From 78a23f3849a40b3a4b0c6794c0b8ad6de5f9b49f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Feb 2025 08:31:44 +0100 Subject: [PATCH 1/3] Bump crate-ci/typos from 1.29.0 to 1.29.5 (#715) Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.29.0 to 1.29.5. - [Release notes](https://github.com/crate-ci/typos/releases) - [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md) - [Commits](https://github.com/crate-ci/typos/compare/v1.29.0...v1.29.5) --- updated-dependencies: - dependency-name: crate-ci/typos dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/SpellCheck.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 1c537fd9e4fc84935ebe90bf9f18736f6f59573a Mon Sep 17 00:00:00 2001 From: Sven Berger Date: Thu, 13 Feb 2025 13:48:23 +0100 Subject: [PATCH 2/3] Mark dev version (#713) * Mark dev version * Update system.jl * Update system.jl * Update Project.toml Co-authored-by: Erik Faulhaber <44124897+efaulhaber@users.noreply.github.com> --------- Co-authored-by: Erik Faulhaber <44124897+efaulhaber@users.noreply.github.com> --- Project.toml | 2 +- src/schemes/fluid/entropically_damped_sph/system.jl | 2 +- src/schemes/fluid/weakly_compressible_sph/system.jl | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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. From 6d0421530ecae1d3ad48195138ad89fa620f90d8 Mon Sep 17 00:00:00 2001 From: Erik Faulhaber <44124897+efaulhaber@users.noreply.github.com> Date: Wed, 19 Feb 2025 17:37:12 +0100 Subject: [PATCH 3/3] Avoid using 'min' Julia version in CI (#721) --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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