Skip to content

Commit

Permalink
drop recipesbase
Browse files Browse the repository at this point in the history
  • Loading branch information
Datseris committed Nov 12, 2020
1 parent 74f5c47 commit 82ce3bd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# v1.11.0
* Dropped RecipesBase
* Now exports `dimension` (there was a problem where we have forgotten to export `dimension` from here, and `DynamicalSystemsBase` was overwritting it)

# v1.10.0
* New methods (Garcia & Almeida and Nichkawde/MDOP) for unified delay coordinates
now available for multivariate input data.
Expand Down
1 change: 1 addition & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
[compat]
Distances = "0.7, 0.8, 0.9, 0.10"
Distributions = "0.23, 0.24"
DynamicalSystemsBase = "1.6.3"
NearestNeighbors = "0.4"
Neighborhood = "0.1, 0.2"
StaticArrays = "0.8, 0.11, 0.12"
Expand Down
10 changes: 0 additions & 10 deletions src/dataset.jl
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
using StaticArrays, LinearAlgebra
using Base.Iterators: flatten

import RecipesBase

export Dataset, AbstractDataset, minima, maxima
export minmaxima, columns, regularize, dimension

Expand Down Expand Up @@ -231,14 +229,6 @@ end
Base.show(io::IO, ::MIME"text/plain", d::AbstractDataset) = print(io, matstring(d))
Base.show(io::IO, d::AbstractDataset) = print(io, summary(d))

#####################################################################################
# Plotting #
#####################################################################################

# Support the plotting of Datasets-as-Matrices
RecipesBase.@recipe f(::Type{T}, vals::T) where {T<:AbstractDataset} = Matrix(vals)


#####################################################################################
# Minima and Maxima #
#####################################################################################
Expand Down

2 comments on commit 82ce3bd

@Datseris
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@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/24511

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 v1.11.0 -m "<description of version>" 82ce3bd4cb86c88e07fd33bc18f7a89a938ef757
git push origin v1.11.0

Please sign in to comment.