Skip to content

Commit dcb15dc

Browse files
authored
Merge pull request #26 from elben10/release
Fix release
2 parents fcb3aaf + ed8ba01 commit dcb15dc

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ jobs:
1111
- uses: actions/checkout@v2
1212
- uses: actions/setup-node@v2
1313
with:
14-
node-version: '12'
14+
node-version: '12.x'
15+
registry-url: 'https://registry.npmjs.org'
1516
- name: Set up Python 3.8
1617
uses: actions/setup-python@v2
1718
with:

.npmignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ yarn-debug.log*
1616
yarn-error.log*
1717

1818
# Development folders and files
19+
examples
20+
dist
1921
public
2022
src
2123
scripts

dash_data_table/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from dash_data_table import components
55
from dash_data_table.components import *
66

7-
__version__ = "0.0.3"
7+
__version__ = "0.0.4"
88
_current_path = os.path.dirname(os.path.abspath(__file__))
99
METADATA_PATH = os.path.join(_current_path, "components", "metadata.json")
1010

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-data-table",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"description": "Project Description",
55
"main": "build/index.js",
66
"scripts": {

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[tool.poetry]
22
name = "dash_data_table"
3-
version = "0.0.3"
3+
version = "0.0.4"
44
description = ""
55
authors = ["Jakob Jul Elben <elbenjakobjul@gmail.com>"]
6-
include = ["README.md", "package.json"]
6+
include = ["README.md", "package.json", "dash_data_table/components/*"]
77

88
[tool.poetry.dependencies]
99
python = "^3.7"

0 commit comments

Comments
 (0)