Skip to content

Commit

Permalink
Cutting release for 0.5.6 to test autorelease
Browse files Browse the repository at this point in the history
  • Loading branch information
caseykneale committed Oct 4, 2019
1 parent 1445236 commit c102738
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ChemometricsTools"
uuid = "a9718f02-dbee-5ae5-ad0e-dfbd07fa387b"
authors = ["caseykneale "]
version = "0.5.5"
version = "0.5.6"

[deps]
Arpack = "7d9fca2a-8960-54d3-9f78-7d1dccf2cb97"
Expand Down
2 changes: 1 addition & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ makedocs(
"Ensemble Models" => "man/Ensemble.md"
],
"Speciality Tools" => Any[
"Model Analysis" => "man/modelanalysis.md",
"Model Analysis" => "man/modelanaly.md",
"MultiWay" => "man/MultiWay.md",
"Anomaly Detection" => "man/AnomalyDetection.md",
"Curve Resolution" => "man/CurveResolution.md"
Expand Down
2 changes: 1 addition & 1 deletion docs/src/man/datautils.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Data Utilitiess API Reference
# Data Utilities API Reference

## Functions

Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions src/DistanceMeasures.jl
Original file line number Diff line number Diff line change
Expand Up @@ -174,11 +174,11 @@ struct Kernel
end

"""
Kernel(X)
Kernel(X::Array)
Default constructor for Kernel object. Returns the linear kernel of `X`.
"""
Kernel( X ) = Kernel(0.0, "linear", X)
Kernel( X::Array ) = Kernel(0.0, "linear", X)

"""
(K::Kernel)(X)
Expand Down

0 comments on commit c102738

Please sign in to comment.