diff --git a/NEWS.md b/NEWS.md index e4fc2925..3c8b626f 100644 --- a/NEWS.md +++ b/NEWS.md @@ -79,7 +79,7 @@ #### 0.7.0 -- Check out [the summary](http://plots.readthedocs.io/en/latest/plots_v0.7/) +- Check out [the summary](http://juliaplots.github.io/plots_v0.7/) - Revamped and simplified internals - [Recipes, recipes, recipes](https://github.com/JuliaPlots/RecipesBase.jl/issues/6) - [Layouts and Subplots](https://github.com/tbreloff/Plots.jl/issues/60) diff --git a/README.md b/README.md index 9d9864d6..ea3e3bfc 100644 --- a/README.md +++ b/README.md @@ -15,10 +15,10 @@ Plots is a plotting API and toolset. My goals with the package are: - **Intuitive**. Start generating plots without reading volumes of documentation. Commands should "just work". - **Concise**. Less code means fewer mistakes and more efficient development/analysis. - **Flexible**. Produce your favorite plots from your favorite package, but quicker and simpler. -- **Consistent**. Don't commit to one graphics package. Use the same code and access the strengths of all [backends](http://plots.readthedocs.io/en/latest/backends/). +- **Consistent**. Don't commit to one graphics package. Use the same code and access the strengths of all [backends](http://juliaplots.github.io/backends/). - **Lightweight**. Very few dependencies, since backends are loaded and initialized dynamically. -Use the [preprocessing pipeline](http://plots.readthedocs.io/en/latest/pipeline/) in Plots to fully describe your visualization before it calls the backend code. This maintains modularity and allows for efficient separation of front end code, algorithms, and backend graphics. New graphical backends can be added with minimal effort. +Use the [preprocessing pipeline](http://juliaplots.github.io/pipeline/) in Plots to fully describe your visualization before it calls the backend code. This maintains modularity and allows for efficient separation of front end code, algorithms, and backend graphics. New graphical backends can be added with minimal effort. ```julia using Plots @@ -28,6 +28,6 @@ using Plots end ``` -![waves](http://plots.readthedocs.io/en/latest/examples/img/waves.gif) +![waves](http://juliaplots.github.io/examples/img/waves.gif) View the [full documentation](http://plots.readthedocs.io).