You can go through the releases made after Julia 1.0 is announced, if any of their notes say v1.0 support, then that’s your answer. GR v0.32.1 says “Add support for Julia 1.0.0”. Or you can simply try ] adding it, if it installs correctly with the new automatic capping, then most likely it works on Julia v1.0. But just to be sure, run ] test pkg_name in the REPL to run the unit tests of the package. Then if all tests pass, you can run your own examples and make sure they work fine using the API of the latest stable release.
These are packages on their own. If you have issues with Plots.jl this is not related to theses packages. What you call “Frontend” is also pretty limited. My frontend is PyPlot and it works pretty well on Julia 1.0.
BACKENDs
PyPlot "seems to work in Julia 1.0.0"
Plotly
PlotlyJS
GR "seems to work in Julia 1.0.0"
UnicodePlots "seems to work in Julia 1.0.0"
PGFPlots
InspectDR
HDF5
FRONTEND
Plots "seems to work in Julia 1.0.0"
ALONEBYITSELF
Gadfly "requires specific procedure to work in julia 1.0.0 (see notes)"
Gadfly notes:
julia>
(v1.0) pkg> add Compat
(v1.0) pkg> add Compose#master
(v1.0) pkg> add Gadfly#master
(v1.0) pkg> add Hexagons
to test
restart REPL
julia> using Gadfly
julia> plot(y=[1,2,3])
I’ve been using it exclusively on 1.0 for over a month and it’s been solid. We’re actively squashing a bunch of old bugs and so it’s probably even better than on Julia v0.6.2. Let us know if you run into any issues!