Skip to content

Commit 5f18013

Browse files
authored
Merge pull request #26 from JuliaAI/dev
For a 0.3.2 release
2 parents 7bdf5c6 + 250b9c2 commit 5f18013

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "StatisticalTraits"
22
uuid = "64bff920-2084-43da-a3e6-9bb72801c0c9"
33
authors = ["Anthony D. Blaom <[email protected]>"]
4-
version = "3.1.0"
4+
version = "3.2.0"
55

66
[deps]
77
ScientificTypesBase = "30f210dd-8aff-4c5f-94ba-8e64358c1161"

src/StatisticalTraits.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ const TRAITS = [
4040
:distribution_type,
4141
:iteration_parameter,
4242
:supports_training_losses,
43-
:deep_properties
43+
:deep_properties,
44+
:reporting_operations,
4445
]
4546

4647

@@ -182,6 +183,7 @@ distribution_type(::Type) = missing
182183
iteration_parameter(::Type) = nothing
183184
supports_training_losses(::Type) = false
184185
deep_properties(::Type) = ()
186+
reporting_operations(::Type) = ()
185187

186188
# Returns a tuple, with one entry per field of `T` (the type of some
187189
# statistical model, for example). Each entry is `nothing` or defines

0 commit comments

Comments
 (0)