Skip to content

Commit

Permalink
Enable dependabot (#183)
Browse files Browse the repository at this point in the history
* Enable dependabot

* Remove breaking change warning
  • Loading branch information
PerezHz committed Feb 25, 2024
1 parent 8a3352b commit d67c780
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
11 changes: 11 additions & 0 deletions .github/dependabot.yml
@@ -0,0 +1,11 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
- package-ecosystem: "github-actions" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
10 changes: 0 additions & 10 deletions src/TaylorIntegration.jl
Expand Up @@ -21,16 +21,6 @@ include("common.jl")

function __init__()

### Breaking change warning added in v0.14.0; to be deleted in next minor version (v0.15.0)
@warn("""\n\n
# Breaking changes
When dense output from `taylorinteg` is requested by the user,
the first row of the dense output polynomials matrix now represents
the Taylor expansion of the solution around the initial condition
w.r.t. the independent variable in the ODE. Previously it represented
the initial condition plus a Taylor1 perturbation.\n
""")

@static if !isdefined(Base, :get_extension)
@require OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed" begin
include("../ext/TaylorIntegrationDiffEq.jl")
Expand Down

2 comments on commit d67c780

@PerezHz
Copy link
Owner Author

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 updated: JuliaRegistries/General/101610

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.15.0 -m "<description of version>" d67c7805528de093a23665e88062eda1335e74c9
git push origin v0.15.0

Please sign in to comment.