Skip to content

Commit 03bf925

Browse files
committed
fix references to github.io page
Signed-off-by: Andrei Gherghescu <[email protected]>
1 parent 33d5fbc commit 03bf925

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,11 @@ Version 0.8.0 represents a significant release which refactors a lot of the code
8787

8888
## [0.6.0] - 2020-07-25
8989
### Added
90-
- Shapes support ([documentation](https://igiagkiozis.github.io/plotly/content/fundamentals/shapes.html)).
90+
- Shapes support ([documentation](https://plotly.github.io/plotly.rs/content/fundamentals/shapes.html)).
9191
- Annotations support.
9292
- Docstrings to `Scatter`.
93-
- `ndarray` support ([documentation](https://igiagkiozis.github.io/plotly/content/fundamentals/ndarray_support.html)).
94-
- Jupyter lab and notebook support ([documentation](https://igiagkiozis.github.io/plotly/content/fundamentals/jupyter_support.html)).
93+
- `ndarray` support ([documentation](https://plotly.github.io/plotly.rs/content/fundamentals/ndarray_support.html)).
94+
- Jupyter lab and notebook support ([documentation](https://plotly.github.io/plotly.rs/content/fundamentals/jupyter_support.html)).
9595
### Changed
9696
- Removed `num` dependence.
9797
- Removed `plotly_orca` and the `orca` feature. Use the `kaleido` feature for static image generation.
@@ -109,7 +109,7 @@ Version 0.8.0 represents a significant release which refactors a lot of the code
109109

110110
## [0.5.0] - 2020-07-12
111111
### Added
112-
- [Plotly.rs Book](https://igiagkiozis.github.io/plotly/).
112+
- [Plotly.rs Book](https://plotly.github.io/plotly.rs/).
113113
- Using plotly.js from the official CDN is now the default. To use the local version use the `Plot::use_local_plotly` method.
114114
- Plot rasterization to `png`, `jpg`, `eps`, `pdf`, `webp` and `svg` using [plotly/Kaleido](https://github.com/plotly/Kaleido), enabled using the `kaleido` feature.
115115
- Multi-axis support and examples.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
</a>
2020
</p>
2121
<h4>
22-
<a href="https://igiagkiozis.github.io/plotly/content/getting_started.html">Getting Started</a>
22+
<a href="https://plotly.github.io/plotly.rs/content/getting_started.html">Getting Started</a>
2323
<span> | </span>
24-
<a href="https://igiagkiozis.github.io/plotly/content/recipes.html">Recipes</a>
24+
<a href="https://plotly.github.io/plotly.rs/content/recipes.html">Recipes</a>
2525
<span> | </span>
2626
<a href="https://docs.rs/crate/plotly/">API Docs</a>
2727
<span> | </span>
@@ -44,7 +44,7 @@
4444

4545
A plotting library for Rust powered by [Plotly.js](https://plot.ly/javascript/).
4646

47-
Documentation and numerous interactive examples are available in the [Plotly.rs Book](https://igiagkiozis.github.io/plotly/content/getting_started.html), the [examples/](https://github.com/plotly/plotly.rs/tree/main/examples) directory and [docs.rs](https://docs.rs/crate/plotly).
47+
Documentation and numerous interactive examples are available in the [Plotly.rs Book](https://plotly.github.io/plotly.rs/content/getting_started.html), the [examples/](https://github.com/plotly/plotly.rs/tree/main/examples) directory and [docs.rs](https://docs.rs/crate/plotly).
4848

4949

5050
For changes since the last version, please consult the [changelog](https://github.com/plotly/plotly.rs/tree/main/CHANGELOG.md).

plotly/src/plot.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ let height = 680;
6262
let scale = 1.0;
6363
plot.write_image("filename", ImageFormat::PNG, width, height, scale);
6464
65-
See https://igiagkiozis.github.io/plotly/content/getting_started.html for further details.
65+
See https://plotly.github.io/plotly.rs/content/getting_started.html for further details.
6666
"#;
6767

6868
/// Image format for static image export.

0 commit comments

Comments
 (0)