Skip to content

Commit

Permalink
Merge pull request #26 from elben10/release
Browse files Browse the repository at this point in the history
Fix release
  • Loading branch information
elben10 authored Feb 25, 2021
2 parents fcb3aaf + ed8ba01 commit dcb15dc
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '12'
node-version: '12.x'
registry-url: 'https://registry.npmjs.org'
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
Expand Down
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ yarn-debug.log*
yarn-error.log*

# Development folders and files
examples
dist
public
src
scripts
Expand Down
2 changes: 1 addition & 1 deletion dash_data_table/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from dash_data_table import components
from dash_data_table.components import *

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

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.3",
"version": "0.0.4",
"description": "Project Description",
"main": "build/index.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[tool.poetry]
name = "dash_data_table"
version = "0.0.3"
version = "0.0.4"
description = ""
authors = ["Jakob Jul Elben <[email protected]>"]
include = ["README.md", "package.json"]
include = ["README.md", "package.json", "dash_data_table/components/*"]

[tool.poetry.dependencies]
python = "^3.7"
Expand Down

0 comments on commit dcb15dc

Please sign in to comment.