From bf5ea5973434d56733a1b170a55bd429ec5362e4 Mon Sep 17 00:00:00 2001 From: Tom Begley Date: Wed, 22 Sep 2021 23:14:45 +0100 Subject: [PATCH] Release/0.13.1 (#714) * Release 0.13.1 * Update changelog --- dash_bootstrap_components/_version.py | 2 +- docs/content/changelog.md | 6 ++++++ package.json | 2 +- tests/test_version.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/dash_bootstrap_components/_version.py b/dash_bootstrap_components/_version.py index 49a7d9e9..7e0dc0e8 100644 --- a/dash_bootstrap_components/_version.py +++ b/dash_bootstrap_components/_version.py @@ -1 +1 @@ -__version__ = "0.13.1-rc1" +__version__ = "0.13.1" diff --git a/docs/content/changelog.md b/docs/content/changelog.md index 5e211c18..889ab7f8 100644 --- a/docs/content/changelog.md +++ b/docs/content/changelog.md @@ -6,6 +6,12 @@ title: Changelog This page documents notable changes in dash-bootstrap-components releases. +## 0.13.1 - 2021/9/22 + +### Fixed + +- Fix cursor jump issue in `Input` component. ([PR 712](https://github.com/facultyai/dash-bootstrap-components/pull/712)) + ## 0.13.0 - 2021/7/31 ### Added diff --git a/package.json b/package.json index 5c747515..d7bdf686 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dash-bootstrap-components", - "version": "0.13.1-rc1", + "version": "0.13.1", "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 c9df701f..f5d8b4cb 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "0.13.1-rc1" + assert __version__ == "0.13.1"