Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.5.0 #978

Merged
merged 2 commits into from
Sep 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion dash_bootstrap_components/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.5.0-dev"
__version__ = "1.5.0"
11 changes: 11 additions & 0 deletions docs/content/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ title: Changelog

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

## 1.5.0 - 2023/09/07

Version 1.5.0 of dash-bootstrap-components. This version makes some improvements to `Carousel` and `Textarea` as well as updating CDN links. Please continue to report problems on our [issue tracker](https://github.com/facultyai/dash-bootstrap-components/issues).

### Changed
- Textarea will no longer increment `n_submit` if the user types "shift + enter" to create a new-line ([PR 968](https://github.com/facultyai/dash-bootstrap-components/pull/968))
- CDN links have been updated to use Bootstrap version 5.3.1 ([PR 977](https://github.com/facultyai/dash-bootstrap-components/pull/977))

### Added
- You can now pass a `href` attribute to a Carousel item to render that item as a link. Thanks @mapix for the contribution! ([PR 971](https://github.com/facultyai/dash-bootstrap-components/pull/971), [PR 973](https://github.com/facultyai/dash-bootstrap-components/pull/973), [PR 975](https://github.com/facultyai/dash-bootstrap-components/pull/975))

## 1.4.2 - 2023/07/15

Version 1.4.2 of dash-bootstrap-components. This version contains updates and bug fixes but no new features. Please continue to report problems on our [issue tracker](https://github.com/facultyai/dash-bootstrap-components/issues).
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash-bootstrap-components",
"version": "1.5.0-dev",
"version": "1.5.0",
"description": "Bootstrap components for Plotly Dash",
"repository": "github:facultyai/dash-bootstrap-components",
"main": "lib/dash-bootstrap-components.min.js",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == "1.5.0-dev"
assert __version__ == "1.5.0"