diff --git a/dash_bootstrap_components/_version.py b/dash_bootstrap_components/_version.py index ed34683e..14d9d2f5 100644 --- a/dash_bootstrap_components/_version.py +++ b/dash_bootstrap_components/_version.py @@ -1 +1 @@ -__version__ = "1.7.0-dev" +__version__ = "1.7.0" diff --git a/docs/content/changelog.md b/docs/content/changelog.md index 399051a5..5782a19a 100644 --- a/docs/content/changelog.md +++ b/docs/content/changelog.md @@ -6,6 +6,15 @@ title: Changelog This page documents notable changes in dash-bootstrap-components releases. +## 1.7.0 - 2025/01/15 + +Version 1.7.0 of dash-bootstrap-components. This version exposes some new props for `Modal`, and `Textarea` to allow users to customise the behaviour of those components, and extends the functionality of the `debounce` prop in `Input` and `Textarea` components. Please continue to report problems on our [issue tracker](https://github.com/facultyai/dash-bootstrap-components/issues). + +### Added +- Added `content_style` / `contentStyle` and `dialog_style` / `dialogStyle` props to `Modal` to complement the existing `contentClassName` and `dialogClassName` props ([PR 1029](https://github.com/facultyai/dash-bootstrap-components/pull/1029)) +- Added `submit_on_enter` prop to `Textarea` to allow users to disable default behaviour of incrementing `n_submit` when the Enter key is pressed ([PR 1036](https://github.com/facultyai/dash-bootstrap-components/pull/1036)) +- Allow numeric debounce in `Input` and `Textarea` components ([PR 1056](https://github.com/facultyai/dash-bootstrap-components/pull/1056)) + ## 1.6.0 - 2024/04/14 Version 1.6.0 of dash-bootstrap-components. This version makes some improvements to `Accordion`, `Modal` and `Progress` as well as updating CDN links. Please continue to report problems on our [issue tracker](https://github.com/facultyai/dash-bootstrap-components/issues). diff --git a/justfile b/justfile index 3c915484..77263cda 100644 --- a/justfile +++ b/justfile @@ -87,6 +87,7 @@ _copy-examples: cp examples/templates/multi-page-apps/simple_sidebar.py docs/examples/vendor/simple_sidebar.py _set-source-version version: (_set-py-version version) (_set-js-version version) + uv lock -P dash-bootstrap-components [script] _set-py-version version: diff --git a/package.json b/package.json index 21db767f..1bdc9a2f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dash-bootstrap-components", - "version": "1.7.0-dev", + "version": "1.7.0", "description": "Bootstrap components for Plotly Dash", "repository": "github:facultyai/dash-bootstrap-components", "main": "lib/dash-bootstrap-components.min.js", diff --git a/tests/test_version.py b/tests/test_version.py index 7dc40671..648ea15f 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "1.7.0-dev" + assert __version__ == "1.7.0" diff --git a/uv.lock b/uv.lock index 87a0be42..05f48696 100644 --- a/uv.lock +++ b/uv.lock @@ -303,7 +303,7 @@ testing = [ [[package]] name = "dash-bootstrap-components" -version = "1.7.0rc1" +version = "1.7.0" source = { editable = "." } dependencies = [ { name = "dash" },