Skip to content

Commit

Permalink
Fix insufficient compat bounds on some packages
Browse files Browse the repository at this point in the history
  • Loading branch information
bgroenks96 committed Jun 8, 2023
1 parent 888af85 commit 59def53
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ UnPack = "3a884ed6-31ef-47d7-9d2a-63182c4928ed"
Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d"

[compat]
ComponentArrays = "0"
ComponentArrays = "0.13"
ConstructionBase = "1.4"
DataStructures = "0"
DataStructures = "0.18"
DiffEqBase = "6"
DiffEqCallbacks = "2"
DimensionalData = "0.19,0.20,0.21,0.24"
Expand All @@ -55,7 +55,7 @@ Flatten = "0.4"
ForwardDiff = "0.10"
FreezeCurves = "0.8"
IfElse = "0.1"
Interpolations = "0"
Interpolations = "0.14"
IntervalSets = "0.7"
JSON3 = "1.10"
LinearSolve = "1"
Expand Down

4 comments on commit 59def53

@bgroenks96
Copy link
Member 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.

Error while trying to register: "Tag with name v0.18.0 already exists and points to a different commit"

@bgroenks96
Copy link
Member 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/85144

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.18.0 -m "<description of version>" 59def531f20a93b3a9c4a04b41a1b8db4fb45134
git push origin v0.18.0

Also, note the warning: This looks like a new registration that registers version 0.18.0.
Ideally, you should register an initial release with 0.0.1, 0.1.0 or 1.0.0 version numbers
This can be safely ignored. However, if you want to fix this you can do so. Call register() again after making the fix. This will update the Pull request.

Please sign in to comment.