Skip to content
This repository was archived by the owner on Jun 4, 2024. It is now read-only.

Commit bd3c8b3

Browse files
authored
Merge pull request #82 from plotly/fix-dev-bundles
Fix bundles external path.
2 parents 8b446a8 + e8de0d5 commit bd3c8b3

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [0.14.1] - 2018-09-20
6+
### Fixed
7+
- Renamed `__init__.py` external_path to dash_renderer.min.js
8+
59
## [0.14.0] - 2018-09-20
610
### Added
711
- Unminified dev bundle support. [#77](https://github.com/plotly/dash-renderer/pull/77)

dash_renderer/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def _set_react_version(react_version):
7777
'dev_package_path': '{}.dev.js'.format(__name__),
7878
"external_url": (
7979
'https://unpkg.com/dash-renderer@{}'
80-
'/dash_renderer/bundle.js'
80+
'/dash_renderer/dash_renderer.min.js'
8181
).format(__version__),
8282
'namespace': 'dash_renderer'
8383
}

dash_renderer/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.14.0'
1+
__version__ = '0.14.1'

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-renderer",
3-
"version": "0.14.0",
3+
"version": "0.14.1",
44
"description": "render dash components in react",
55
"main": "src/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)