Skip to content

Commit

Permalink
Bump crate-ci/typos from 1.20.9 to 1.20.10 (#265)
Browse files Browse the repository at this point in the history
* Bump crate-ci/typos from 1.20.9 to 1.20.10

Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.20.9 to 1.20.10.
- [Release notes](https://github.com/crate-ci/typos/releases)
- [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md)
- [Commits](crate-ci/typos@v1.20.9...v1.20.10)

---
updated-dependencies:
- dependency-name: crate-ci/typos
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* increase test tolerance for new macOS ARM

* bump version

* include more information in testset name

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Hendrik Ranocha <ranocha@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and ranocha committed May 3, 2024
1 parent 89f0e9a commit 89a4f9a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/SpellCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ jobs:
- name: Checkout Actions Repository
uses: actions/checkout@v4
- name: Check spelling
uses: crate-ci/typos@v1.20.9
uses: crate-ci/typos@v1.20.10
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "SummationByPartsOperators"
uuid = "9f78cca6-572e-554e-b819-917d2f1cf240"
author = ["Hendrik Ranocha"]
version = "0.5.60"
version = "0.5.61"

[deps]
ArgCheck = "dce04be8-c92d-5529-be00-80e4d2c0e197"
Expand Down
4 changes: 2 additions & 2 deletions test/SBP_operators_test.jl
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ for source in D_test_list, T in (Float32,Float64)
end

# Accuracy tests of third derivative operators.
@testset "third-derivative operators" for source in D_test_list, T in (Float32,Float64)
@testset "third-derivative operators ($source, $T)" for source in D_test_list, T in (Float32,Float64)
xmin = -one(T)
xmax = 2*one(T)
N = 101
Expand Down Expand Up @@ -499,7 +499,7 @@ end
mul!(res, D, x0)
@test all(i->abs(res[i]) < eps(T), eachindex(res))
mul!(res, D, x1)
@test all(i->abs(res[i]) < 50_000*eps(T), eachindex(res))
@test all(i->abs(res[i]) < 80_000*eps(T), eachindex(res))
# only interior
mul!(res, D, x2)
@test all(i->abs(res[i]) < 160_000*eps(T), inner_indices)
Expand Down

2 comments on commit 89a4f9a

@ranocha
Copy link
Owner

@ranocha ranocha commented on 89a4f9a May 3, 2024

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

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.5.61 -m "<description of version>" 89a4f9af64fec333d7f63ecbcb1d2a4f308ed0d9
git push origin v0.5.61

Please sign in to comment.