Skip to content

Commit

Permalink
final fix for v0.13.10, Stipple compat v0.27.12
Browse files Browse the repository at this point in the history
  • Loading branch information
hhaensel committed Oct 21, 2023
1 parent e207820 commit 2f9fa0c
Show file tree
Hide file tree
Showing 2 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
Expand Up @@ -14,7 +14,7 @@ DataFrames = "1"
Genie = "5"
PlotlyBase = "0.8.19"
Requires = "1"
Stipple = "0.27.11"
Stipple = "0.27.12"
julia = "1.6"

[extras]
Expand Down
8 changes: 4 additions & 4 deletions test/Charts.jl
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ end

sc = scatter(x = StipplePlotly.JSONText("jsontext"), more_of_this = "a")
pl = Plot(sc)
@test JSON.json(sc) == "{\"type\":\"scatter\",\"more\":{\"of\":{\"this\":\"a\"}},\"x\":\"jsontext\"}"
@test contains(JSON.json(pl), "{\"type\":\"scatter\",\"more\":{\"of\":{\"this\":\"a\"}},\"x\":\"jsontext\"}")
@test JSON.json(sc) == "{\"type\":\"scatter\",\"more\":{\"of\":{\"this\":\"a\"}},\"x\":jsontext}"
@test contains(JSON.json(pl), "{\"type\":\"scatter\",\"more\":{\"of\":{\"this\":\"a\"}},\"x\":jsontext}")

@test Stipple.json(sc) == "{\"type\":\"scatter\",\"more\":{\"of\":{\"this\":\"a\"}},\"x\":\"jsontext\"}"
@test contains(Stipple.json(pl), "{\"type\":\"scatter\",\"more\":{\"of\":{\"this\":\"a\"}},\"x\":\"jsontext\"}")
@test Stipple.json(sc) == "{\"type\":\"scatter\",\"more\":{\"of\":{\"this\":\"a\"}},\"x\":jsontext}"
@test contains(Stipple.json(pl), "{\"type\":\"scatter\",\"more\":{\"of\":{\"this\":\"a\"}},\"x\":jsontext}")
end

end

2 comments on commit 2f9fa0c

@hhaensel
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
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/93860

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.13.10 -m "<description of version>" 2f9fa0cf97adadfff26a9f8a3cc048476ac41189
git push origin v0.13.10

Please sign in to comment.