Skip to content

Commit b41f424

Browse files
committed
fix for 1.6.7. bump version. remove depwarn for collectrows
1 parent 791fc11 commit b41f424

File tree

3 files changed

+1
-8
lines changed

3 files changed

+1
-8
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "PlotlyLight"
22
uuid = "ca7969ec-10b3-423e-8d99-40f33abb42bf"
33
authors = ["joshday <[email protected]>"]
4-
version = "0.7.2"
4+
version = "0.7.3"
55

66
[deps]
77
Artifacts = "56f22d72-fd6d-98f1-02f0-08ddc0907c33"

src/PlotlyLight.jl

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -277,11 +277,6 @@ function Base.show(io::IO, M::MIME"text/html", o::Plot; setting::Settings = DEFA
277277
end
278278

279279
#-----------------------------------------------------------------------------# utils
280-
function collectrows(x::AbstractMatrix)
281-
Base.depwarn("collectrows is deprecated. PlotlyLight now automatically applies this to matrices", :collectrows; force=true)
282-
collect.(eachrow(x))
283-
end
284-
285280
fix_matrix(x::Config) = Config(k => fix_matrix(v) for (k,v) in pairs(x))
286281
fix_matrix(x) = x
287282
fix_matrix(x::AbstractMatrix) = collect.(eachrow(x))

test/runtests.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,4 @@ end
8484
#-----------------------------------------------------------------------------# other
8585
@testset "other" begin
8686
@test occursin("{}", repr("text/html", PlotlyLight.page(Plot())))
87-
88-
@test_warn "deprecated" PlotlyLight.collectrows(rand(2,2))
8987
end

0 commit comments

Comments
 (0)