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

Fix bundles external path. #82

Merged
merged 1 commit into from
Sep 20, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [0.14.1] - 2018-09-20
### Fixed
- Renamed `__init__.py` external_path to dash_renderer.min.js

## [0.14.0] - 2018-09-20
### Added
- Unminified dev bundle support. [#77](https://github.com/plotly/dash-renderer/pull/77)
Expand Down
2 changes: 1 addition & 1 deletion dash_renderer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def _set_react_version(react_version):
'dev_package_path': '{}.dev.js'.format(__name__),
"external_url": (
'https://unpkg.com/dash-renderer@{}'
'/dash_renderer/bundle.js'
'/dash_renderer/dash_renderer.min.js'
).format(__version__),
'namespace': 'dash_renderer'
}
Expand Down
2 changes: 1 addition & 1 deletion dash_renderer/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.14.0'
__version__ = '0.14.1'
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash-renderer",
"version": "0.14.0",
"version": "0.14.1",
"description": "render dash components in react",
"main": "src/index.js",
"scripts": {
Expand Down