From a7ac7cc03544077c8c067ab6cb5bffbba59d6f1f Mon Sep 17 00:00:00 2001 From: Philippe Duval Date: Thu, 20 Sep 2018 16:16:25 -0400 Subject: [PATCH] Fix external_url bundle name. --- CHANGELOG.md | 4 ++++ dash_html_components/__init__.py | 2 +- dash_html_components/version.py | 2 +- package.json | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e3d7d768..4f42d12c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.13.1] - 2018-09-20 +### Fixed +- Renamed `__init__.py` external_path to dash_html_components.min.js + ## [0.13.0] - 2018-09-20 ### Added - Unminified dev bundle support. [#64](https://github.com/plotly/dash-html-components/pull/64) diff --git a/dash_html_components/__init__.py b/dash_html_components/__init__.py index 682f0fc6..e29ba4d7 100644 --- a/dash_html_components/__init__.py +++ b/dash_html_components/__init__.py @@ -40,7 +40,7 @@ "dev_package_path": '{}.dev.js'.format(__name__), "external_url": ( "https://unpkg.com/dash-html-components@{}" - "/dash_html_components/bundle.js" + "/dash_html_components/dash_html_components.min.js" ).format(__version__), "namespace": "dash_html_components" } diff --git a/dash_html_components/version.py b/dash_html_components/version.py index 2d7893e3..deea98b4 100644 --- a/dash_html_components/version.py +++ b/dash_html_components/version.py @@ -1 +1 @@ -__version__ = '0.13.0' +__version__ = '0.13.1' diff --git a/package.json b/package.json index ca873aec..45e2ab99 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dash-html-components", - "version": "0.13.0", + "version": "0.13.1", "description": "Vanilla HTML components for Dash", "main": "lib/index.js", "repository": {