Skip to content
Permalink
Browse files
update readme and changelog for v2.11.1
  • Loading branch information
archmoj committed Mar 15, 2022
1 parent a3ba6fa commit 40dd7d631b148583f77ff8495b409b407becd6b0
Showing with 9 additions and 3 deletions.
  1. +6 −0 CHANGELOG.md
  2. +3 −3 README.md
@@ -9,6 +9,12 @@ To see all merged commits on the master branch that will be part of the next plo

where X.Y.Z is the semver of most recent plotly.js release.

## [2.11.1] -- 2022-03-15

### Fixed
- Regenerate functions of regl-based traces in the "strict" bundle [[#6141](https://github.com/plotly/plotly.js/pull/6141)]


## [2.11.0] -- 2022-03-11

### Added
@@ -55,7 +55,7 @@ You may also consider using [`plotly.js-dist`](https://www.npmjs.com/package/plo
```html
<head>
<script src="https://cdn.plot.ly/plotly-2.11.0.min.js"></script>
<script src="https://cdn.plot.ly/plotly-2.11.1.min.js"></script>
</head>
<body>
<div id="gd"></div>
@@ -72,7 +72,7 @@ You may also consider using [`plotly.js-dist`](https://www.npmjs.com/package/plo
Alternatively you may consider using [native ES6 import](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules) in the script tag.
```html
<script type="module">
import "https://cdn.plot.ly/plotly-2.11.0.min.js"
import "https://cdn.plot.ly/plotly-2.11.1.min.js"
Plotly.newPlot("gd", [{ y: [1, 2, 3] }])
</script>
```
@@ -82,7 +82,7 @@ Fastly supports Plotly.js with free CDN service. Read more at <https://www.fastl
### Un-minified versions are also available on CDN
While non-minified source files may contain characters outside UTF-8, it is recommended that you specify the `charset` when loading those bundles.
```html
<script src="https://cdn.plot.ly/plotly-2.11.0.js" charset="utf-8"></script>
<script src="https://cdn.plot.ly/plotly-2.11.1.js" charset="utf-8"></script>
```

> Please note that as of v2 the "plotly-latest" outputs (e.g. https://cdn.plot.ly/plotly-latest.min.js) will no longer be updated on the CDN, and will stay at the last v1 patch v1.58.5. Therefore, to use the CDN with plotly.js v2 and higher, you must specify an exact plotly.js version.

0 comments on commit 40dd7d6

Please sign in to comment.