Skip to content

Commit

Permalink
Merge pull request #16 from tpgillam/tg/tidy
Browse files Browse the repository at this point in the history
Remove unused type parameter
  • Loading branch information
tpgillam authored Aug 8, 2022
2 parents 945c8df + b228ad8 commit 6cd9e3c
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 = "AssociativeWindowAggregation"
uuid = "444271a7-5434-4a02-b82b-0e30a9223c60"
authors = ["Tom Gillam <[email protected]>"]
version = "0.4.0"
version = "0.4.1"

[deps]
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
Expand Down
2 changes: 1 addition & 1 deletion src/time.jl
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ mutable struct TimeWindowAssociativeOp{Value,Op,Op!,Time,TimeDiff}
end
end

function TimeWindowAssociativeOp{T,Op,Time}(window::TimeDiff) where {T,Op,Time,TimeDiff}
function TimeWindowAssociativeOp{T,Op,Time}(window) where {T,Op,Time}
return TimeWindowAssociativeOp{T,Op,Op,Time}(window)
end

Expand Down

4 comments on commit 6cd9e3c

@tpgillam
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/65907

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.4.1 -m "<description of version>" 6cd9e3ca21fdaefb2905a4644e141ba5fe6dc849
git push origin v0.4.1

Also, note the warning: Version 0.4.1 skips over 0.4.0
This can be safely ignored. However, if you want to fix this you can do so. Call register() again after making the fix. This will update the Pull request.

@tpgillam
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 updated: JuliaRegistries/General/65907

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.4.1 -m "<description of version>" 6cd9e3ca21fdaefb2905a4644e141ba5fe6dc849
git push origin v0.4.1

Please sign in to comment.