Skip to content

Commit

Permalink
Drop kwargs from scitype definition (#51)
Browse files Browse the repository at this point in the history
* Drop `kwargs` from `scitype` definition

* bump version
  • Loading branch information
mtsch authored Jan 12, 2022
1 parent 2427c10 commit 772a43e
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 = "PersistenceDiagrams"
uuid = "90b4794c-894b-4756-a0f8-5efeb5ddf7ae"
authors = ["mtsch <matijacufar@gmail.com>"]
version = "0.9.5"
version = "0.9.6"

[deps]
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
Expand Down
2 changes: 1 addition & 1 deletion src/scitypes.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import ScientificTypes: DefaultConvention
const SB = ScientificTypes.ScientificTypesBase

SB.scitype(::PersistenceDiagram, ::DefaultConvention; kwargs...) = PersistenceDiagram
SB.scitype(::PersistenceDiagram, ::DefaultConvention) = PersistenceDiagram

2 comments on commit 772a43e

@mtsch
Copy link
Owner Author

@mtsch mtsch commented on 772a43e Jan 12, 2022

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/52253

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.9.6 -m "<description of version>" 772a43e5df1f57104ce425299d9726a99fe760da
git push origin v0.9.6

Please sign in to comment.