Skip to content

Commit fcb3aaf

Browse files
authored
Merge pull request #25 from elben10/release
Release
2 parents 5082c32 + d515167 commit fcb3aaf

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

.github/workflows/release.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ jobs:
2727
poetry install
2828
npm install
2929
- name: Build a binary wheel and a source tarball
30-
run: poetry build
30+
run: |
31+
npm build
32+
poetry build
3133
- name: Publish distribution 📦 to Test PyPI
3234
run: poetry publish --repository testpypi --username __token__ --password ${{ secrets.PYPI_API_TEST_TOKEN }}
3335
- name: Publish distribution 📦 to PyPI

dash_data_table/__init__.py

+1-1
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.2"
7+
__version__ = "0.0.3"
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

+4-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "dash_data_table",
3-
"version": "0.0.2",
2+
"name": "dash-data-table",
3+
"version": "0.0.3",
44
"description": "Project Description",
55
"main": "build/index.js",
66
"scripts": {

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "dash_data_table"
3-
version = "0.0.2"
3+
version = "0.0.3"
44
description = ""
55
authors = ["Jakob Jul Elben <[email protected]>"]
66
include = ["README.md", "package.json"]

0 commit comments

Comments
 (0)