Skip to content

Commit

Permalink
fix breakage in SpecialPolynomials (#417)
Browse files Browse the repository at this point in the history
  • Loading branch information
jverzani authored Jun 2, 2022
1 parent 647cb67 commit 3f4cacb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name = "Polynomials"
uuid = "f27b6e38-b328-58d1-80ce-0feddd5e7a45"
license = "MIT"
author = "JuliaMath"
version = "3.1.2"
version = "3.1.3"

[deps]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Expand Down
1 change: 1 addition & 0 deletions src/common.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1053,6 +1053,7 @@ function Base.isapprox(p1::AbstractPolynomial, p2::AbstractPolynomial; kwargs...
elseif isconstant(p2)
return false
end
assert_same_variable(p1, p2) || return false
isapprox(promote(p1, p2)...; kwargs...)
end

Expand Down

2 comments on commit 3f4cacb

@jverzani
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 created: JuliaRegistries/General/61576

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 v3.1.3 -m "<description of version>" 3f4cacb00067daa64ed1ae5097bfe1b8b8c238ee
git push origin v3.1.3

Please sign in to comment.