Skip to content

Commit 8f3a7a0

Browse files
authored
Release 1.7.0 (#1064)
* Release 1.7.0 * Update changelog * Update lockfile when updating versions
1 parent cf3fe8e commit 8f3a7a0

File tree

6 files changed

+14
-4
lines changed

6 files changed

+14
-4
lines changed

dash_bootstrap_components/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.7.0-dev"
1+
__version__ = "1.7.0"

docs/content/changelog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ title: Changelog
66

77
This page documents notable changes in dash-bootstrap-components releases.
88

9+
## 1.7.0 - 2025/01/15
10+
11+
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).
12+
13+
### Added
14+
- 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))
15+
- 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))
16+
- Allow numeric debounce in `Input` and `Textarea` components ([PR 1056](https://github.com/facultyai/dash-bootstrap-components/pull/1056))
17+
918
## 1.6.0 - 2024/04/14
1019

1120
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).

justfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ _copy-examples:
8787
cp examples/templates/multi-page-apps/simple_sidebar.py docs/examples/vendor/simple_sidebar.py
8888

8989
_set-source-version version: (_set-py-version version) (_set-js-version version)
90+
uv lock -P dash-bootstrap-components
9091

9192
[script]
9293
_set-py-version version:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-bootstrap-components",
3-
"version": "1.7.0-dev",
3+
"version": "1.7.0",
44
"description": "Bootstrap components for Plotly Dash",
55
"repository": "github:facultyai/dash-bootstrap-components",
66
"main": "lib/dash-bootstrap-components.min.js",

tests/test_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33

44
def test_version():
5-
assert __version__ == "1.7.0-dev"
5+
assert __version__ == "1.7.0"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)