Skip to content

Commit 50e82d2

Browse files
authored
Merge pull request #1 from iamgp/release-please--branches--main
2 parents 0d56dc2 + 9622d5f commit 50e82d2

File tree

7 files changed

+46
-6
lines changed

7 files changed

+46
-6
lines changed

.release-please-manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
".": "1.0.4",
3-
"src/dashkit_table": "1.0.1",
2+
".": "1.1.0",
3+
"src/dashkit_table": "1.1.0",
44
"src/dashkit_shadcn": "1.0.1",
55
"src/dashkit_kiboui": "1.0.1"
66
}

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Changelog
2+
3+
## [1.1.0](https://github.com/iamgp/dash_dashkit/compare/dash-dashkit-v1.0.4...dash-dashkit-v1.1.0) (2025-08-20)
4+
5+
6+
### Features
7+
8+
* initial commit ([d70a726](https://github.com/iamgp/dash_dashkit/commit/d70a72641f9d98c7a101059ddb0efb3cbdd0011c))
9+
* markdown ([562e141](https://github.com/iamgp/dash_dashkit/commit/562e14181f9b128f400fbf8228fe8ed55b8cf448))
10+
* markdown page ([a47207f](https://github.com/iamgp/dash_dashkit/commit/a47207f600faf617754fa993e0070fe0b75ab424))
11+
* progress ([496efd8](https://github.com/iamgp/dash_dashkit/commit/496efd8b914a33a2190ba461c200b4a10407eb0c))
12+
* sidebar ([9b261ed](https://github.com/iamgp/dash_dashkit/commit/9b261ed6eab820cbbc5b1d4f01e3b9053e87f3d2))
13+
* sidebar changes ([d5d6781](https://github.com/iamgp/dash_dashkit/commit/d5d6781f4a54cac66beef998b6595ed7a6622376))
14+
* styling ([561e465](https://github.com/iamgp/dash_dashkit/commit/561e465509a796a95ada82f9a58315383b78d823))
15+
* styling ([e8cf76d](https://github.com/iamgp/dash_dashkit/commit/e8cf76dba25b830a311bf8203ec6d47d1ba4e795))
16+
* taskipy ([579e9cd](https://github.com/iamgp/dash_dashkit/commit/579e9cd58e83756c5076488b6ea82d2d5a775bb8))
17+
* theme manager ([ead1508](https://github.com/iamgp/dash_dashkit/commit/ead15081a08cf7862a4b2e9139bbfa505a094dc1))
18+
* updates ([bff0ced](https://github.com/iamgp/dash_dashkit/commit/bff0ced0b4f3b1a6bfa030025407b2571a03644b))
19+
* updates ([395ef09](https://github.com/iamgp/dash_dashkit/commit/395ef0969b3df258fd033334ae4b77462bf49de2))
20+
21+
22+
### Bug Fixes
23+
24+
* colours ([e382aa9](https://github.com/iamgp/dash_dashkit/commit/e382aa93c1d2acaa2d187c6aff6ab4334041e1fd))
25+
* dark mode ([13b1a39](https://github.com/iamgp/dash_dashkit/commit/13b1a39d1880335704fe80985f06fa92f5f4d9b4))
26+
* extract app data ([7496175](https://github.com/iamgp/dash_dashkit/commit/7496175f4591672e186a846745c3ee53db7ac37b))
27+
* fixes ([7723fc0](https://github.com/iamgp/dash_dashkit/commit/7723fc0a3644855fd909657d9d3a3a9e95e344eb))
28+
* **packaging:** include Python package files in wheel (remove restrictive include); bump dash-dashkit to 1.0.5 ([b23c05b](https://github.com/iamgp/dash_dashkit/commit/b23c05b8a5aaafefc40d849760002c1737a7e7ec))
29+
* sidebar ([cf21adf](https://github.com/iamgp/dash_dashkit/commit/cf21adfcc118c2f0b57ec9df937c560f0120616e))
30+
* styling ([ce54741](https://github.com/iamgp/dash_dashkit/commit/ce5474191cdf1d7b0a912fcd430dfe4f2565f611))
31+
* table ([69301bb](https://github.com/iamgp/dash_dashkit/commit/69301bbab5fa3a9becffbcc1bfd960699d2f0fe9))
32+
* themes ([653b25a](https://github.com/iamgp/dash_dashkit/commit/653b25a6c3aa12688a9d659bb823769b04571cdc))

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "dash-dashkit"
3-
version = "1.0.5"
3+
version = "1.1.0"
44
description = "Modern dashboard components for Dash applications"
55
readme = "README.md"
66
requires-python = ">=3.10"

src/dashkit_table/dashkit_table/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from importlib.metadata import version as _pkg_version
88
__version__ = _pkg_version("dashkit_table")
99
except Exception:
10-
__version__ = "0.0.0"
10+
__version__ = "1.1.0"
1111

1212
# Get the directory of this package
1313
_current_dir = Path(__file__).parent

src/dashkit_table/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "dashkit_table"
33
description = "Modern Handsontable component for Dash with native theming support"
44
readme = "README.md"
55
requires-python = ">=3.8"
6-
version = "1.0.1"
6+
version = "1.1.0"
77
dependencies = [
88
"dash>=2.0.0",
99
]

src/dashkit_table/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name="dashkit_table",
13-
version="1.0.1",
13+
version="1.1.0",
1414
description="Modern Handsontable component for Dash with native theming support",
1515
long_description=(Path(__file__).parent / "README.md").read_text(encoding="utf-8"),
1616
long_description_content_type="text/markdown",
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changelog
2+
3+
## [1.1.0](https://github.com/iamgp/dash_dashkit/compare/dashkit_table-v1.0.1...dashkit_table-v1.1.0) (2025-08-20)
4+
5+
6+
### Features
7+
8+
* taskipy ([579e9cd](https://github.com/iamgp/dash_dashkit/commit/579e9cd58e83756c5076488b6ea82d2d5a775bb8))

0 commit comments

Comments
 (0)