Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
daanhb committed Apr 29, 2024
1 parent fe697d0 commit c816339
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ jobs:
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
- uses: codecov/codecov-action@v4
with:
file: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false
8 changes: 4 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "FrameFun"
uuid = "bbafa164-4497-5d18-87cf-33e911f89480"
authors = ["daanhb,roelmatthysen,marcusdavidwebb,vincentcp"]
version = "0.5.5"
version = "0.5.6"

[deps]
BasisFunctions = "4343a256-5453-507d-8aad-01a9d7189916"
Expand All @@ -25,13 +25,13 @@ SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"

[compat]
BasisFunctions = "0.6.3"
BasisFunctions = "0.6.4"
CompositeTypes = "0.1.3"
DomainSets = "0.7"
FillArrays = "0.12,0.13"
FillArrays = "0.13,1"
GenericFFT = "0.1.3"
GenericLinearAlgebra = "0.3"
GridArrays = "0.2.1"
GridArrays = "0.2.2"
LowRankApprox = "0.5"
MacroTools = "0.5"
PGFPlotsX = "1.4"
Expand Down

2 comments on commit c816339

@daanhb
Copy link
Member Author

@daanhb daanhb commented on c816339 Apr 29, 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/105846

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.6 -m "<description of version>" c816339c5baab247ef2637c8ca8476839666d314
git push origin v0.5.6

Please sign in to comment.