Skip to content

Commit

Permalink
Fix a wrong interpolation (#105)
Browse files Browse the repository at this point in the history
* Fix a wrong interpolation

* Bump patch version
  • Loading branch information
lbenet authored May 26, 2020
1 parent cc98758 commit 69ed7be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "TaylorIntegration"
uuid = "92b13dbe-c966-51a2-8445-caca9f8a7d42"
repo = "https://github.com/PerezHz/TaylorIntegration.jl.git"
version = "0.8.2"
version = "0.8.3"

[deps]
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
Expand Down
4 changes: 2 additions & 2 deletions src/explicitode.jl
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ function _determine_parsing!(parse_eqs::Bool, f, t, x, params)
catch
@warn("""Unable to use the parsed method of `jetcoeffs!`
despite of having `parse_eqs=true`, due to some internal error.
Using `parse_eqs = $false`""")
Using `parse_eqs = false`""")
parse_eqs = false
end
end
Expand All @@ -275,7 +275,7 @@ function _determine_parsing!(parse_eqs::Bool, f, t, x, dx, params)
catch
@warn("""Unable to use the parsed method of `jetcoeffs!`
despite of having `parse_eqs=true`, due to some internal error.
Using `parse_eqs = $false`""")
Using `parse_eqs = false`""")
parse_eqs = false
end
end
Expand Down

2 comments on commit 69ed7be

@lbenet
Copy link
Collaborator Author

@lbenet lbenet commented on 69ed7be May 26, 2020

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

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.8.3 -m "<description of version>" 69ed7be5d0532743125193f0c4743c09c01eeafd
git push origin v0.8.3

Please sign in to comment.