Skip to content

Commit

Permalink
Specialize axes for InfRanges (#141)
Browse files Browse the repository at this point in the history
* Specialize axes for InfRanges

* Version bump to v0.13.1
  • Loading branch information
jishnub authored Aug 28, 2023
1 parent becf527 commit 87c6d89
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
@@ -1,6 +1,6 @@
name = "InfiniteArrays"
uuid = "4858937d-0d70-526a-a4dd-2d5cb5dd786c"
version = "0.13.0"
version = "0.13.1"

[deps]
ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"
Expand Down
1 change: 1 addition & 0 deletions src/infrange.jl
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ AbstractVector{T}(a::OneToInf) where T<:Real = InfUnitRange{T}(a)
## interface implementations

size(r::InfRanges) = (ℵ₀,)
axes(r::InfRanges) = (OneToInf(),)

isempty(r::InfRanges) = false

Expand Down

2 comments on commit 87c6d89

@jishnub
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/90365

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.13.1 -m "<description of version>" 87c6d890220a6b507a28864098e5fb65f6a0bccd
git push origin v0.13.1

Please sign in to comment.