We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06c6609 commit 689daa0Copy full SHA for 689daa0
Project.toml
@@ -1,7 +1,7 @@
1
name = "PlotlyLight"
2
uuid = "ca7969ec-10b3-423e-8d99-40f33abb42bf"
3
authors = ["joshday <[email protected]>"]
4
-version = "0.7.1"
+version = "0.7.2"
5
6
[deps]
7
Artifacts = "56f22d72-fd6d-98f1-02f0-08ddc0907c33"
src/PlotlyLight.jl
@@ -50,8 +50,8 @@ end
50
get_semver(x) = VersionNumber(match(r"v(\d+)\.(\d+)\.(\d+)", x).match[2:end])
51
52
function latest_plotlyjs_version()
53
- n = JSON3.read(download("https://api.github.com/repos/plotly/plotly.js/releases/latest")).name
54
- VersionNumber(n)
+ file = download("https://github.com/plotly/plotly.js/releases/latest")
+ get_semver(read(file, String))
55
end
56
57
function download_plotly!(v::VersionNumber = latest_plotlyjs_version())
0 commit comments