Skip to content

Commit

Permalink
Fix missed import between modules
Browse files Browse the repository at this point in the history
  • Loading branch information
Tokazama committed Jul 29, 2020
1 parent 6c7ff99 commit b44b44d
Show file tree
Hide file tree
Showing 3 changed files with 5 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 = "AxisIndices"
uuid = "f52c9ee2-1b1c-4fd8-8546-6350938c7f11"
authors = ["Tokazama <zchristensen7@gmail.com>"]
version = "0.6"
version = "0.6.1"

[deps]
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
Expand Down
3 changes: 2 additions & 1 deletion src/OffsetAxes/OffsetAxes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ using AxisIndices.Styles
using AxisIndices.Interface
using AxisIndices.Interface: unsafe_reconstruct, check_axis_length, maybe_tail, naxes, check_axis_length
using AxisIndices.Interface: append_axis!
using AxisIndices.Interface: to_axis, to_axes, to_index
using AxisIndices.Interface: to_axis, to_axes, to_index, assign_indices


using AxisIndices.Axes

Expand Down
2 changes: 2 additions & 0 deletions test/OffsetAxes/OffsetAxes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@
include("OffsetAxis.jl")
include("CenteredAxis.jl")
include("IdentityAxis.jl")

@test OffsetArray(OffsetArray(ones(2, 2))) isa OffsetArray

2 comments on commit b44b44d

@Tokazama
Copy link
Owner 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/18687

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

Please sign in to comment.