Skip to content

Commit

Permalink
Fix cdn link and upgrade version
Browse files Browse the repository at this point in the history
  • Loading branch information
elben10 committed Feb 25, 2021
1 parent 58b0720 commit d452d18
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions dash_data_table/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@
from dash_data_table import components
from dash_data_table.components import *

__version__ = "0.0.5"
__version__ = "0.0.6"
_current_path = os.path.dirname(os.path.abspath(__file__))
METADATA_PATH = os.path.join(_current_path, "components", "metadata.json")

_js_dist = [
{
"relative_package_path": "components/dash_data_table.min.js",
"external_url": f"https://unpkg.com/dash-data-table@{__version__}/dash_data_table/dash_data_table.min.js",
"external_url": f"https://unpkg.com/dash-data-table@{__version__}/dash_data_table/components/dash_data_table.min.js",
"namespace": "dash_data_table",
},
{
"relative_package_path": "components/dash_data_table.min.js.map",
"external_url": f"https://unpkg.com/dash-data-table@{__version__}/dash_data_table/dash_data_table.min.js.map",
"external_url": f"https://unpkg.com/dash-data-table@{__version__}/dash_data_table/components/dash_data_table.min.js.map",
"namespace": "dash_data_table",
"dynamic": True,
},
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash-data-table",
"version": "0.0.5",
"version": "0.0.6",
"description": "Project Description",
"main": "build/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dash_data_table"
version = "0.0.5"
version = "0.0.6"
description = ""
authors = ["Jakob Jul Elben <elbenjakobjul@gmail.com>"]
include = ["README.md", "package.json", "dash_data_table/components/*"]
Expand Down

0 comments on commit d452d18

Please sign in to comment.