Skip to content

Commit

Permalink
Merge pull request #8 from JuliaApproximation/jp/julia-v10
Browse files Browse the repository at this point in the history
syntax break fix from juliva v1.9 to v1.10
  • Loading branch information
ioannisPApapadopoulos authored Feb 15, 2024
2 parents da90344 + c438ad1 commit be919b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "AnnuliOrthogonalPolynomials"
uuid = "de1797fd-24c3-4035-91a2-b52aecdcfb01"
authors = ["john.papad "]
version = "0.0.3"
version = "0.0.4"

[deps]
BlockArrays = "8e7c35d0-a365-5155-bbbb-fb81a777f24e"
Expand Down
2 changes: 1 addition & 1 deletion src/annulus.jl
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ function grid(S::ZernikeAnnulus{T}, B::Block{1}) where T
ρ = parent(S).ρ

# The radial grid:
r = [begin t = (N-n-one(T)/2)/(2N); ct = sinpi(t); st = cospi(t); sqrt(ct^2+ρ^2*st^2) end; for n in 0:N-1]
r = [first([begin t = (N-n-one(T)/2)/(2N); ct = sinpi(t); st = cospi(t); sqrt(ct^2+ρ^2*st^2) end]) for n in 0:N-1]

# The angular grid:
θ = (0:M-1)*convert(T,2)/M
Expand Down

2 comments on commit be919b5

@ioannisPApapadopoulos
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/100947

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

Please sign in to comment.