diff --git a/.circleci/config.yml b/.circleci/config.yml index 343eafa7..a453aa6b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -64,7 +64,7 @@ python_variables: &python_variables CIRCLE_ARTIFACTS: /tmp/circleci-artifacts CIRCLE_TEST_REPORTS: /tmp/circleci-test-results CODECOV_TOKEN: b0d35139-0a75-427a-907b-2c78a762f8f0 - VERSION: 1.58.0 + VERSION: 1.58.1 PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases RUN_BLACK: true python: &python diff --git a/CHANGES.md b/CHANGES.md index d4ba0e7a..0c4fcbe6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,8 @@ ## Changelog +### 1.58.1 (2021-10-2) +* re-pinned dash to 2.0.0 + ### 1.58.0 (2021-10-2) * [#568](https://github.com/man-group/dtale/issues/568): range highlight updates * [#566](https://github.com/man-group/dtale/issues/566): clustergram charts diff --git a/docker/dtale.env b/docker/dtale.env index 3a9f401a..03d8e467 100644 --- a/docker/dtale.env +++ b/docker/dtale.env @@ -1,2 +1,2 @@ -VERSION=1.58.0 +VERSION=1.58.1 TZ=America/New_York \ No newline at end of file diff --git a/docs/source/conf.py b/docs/source/conf.py index 455c0240..3e285d08 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -64,9 +64,9 @@ # built documents. # # The short X.Y version. -version = u"1.58.0" +version = u"1.58.1" # The full version, including alpha/beta/rc tags. -release = u"1.58.0" +release = u"1.58.1" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/package.json b/package.json index 168d1dbe..8046e2db 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dtale", - "version": "1.58.0", + "version": "1.58.1", "description": "Visualizer for Pandas Data Structures", "main": "main.js", "directories": { diff --git a/requirements.txt b/requirements.txt index 208641e2..f198b625 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ lz4<=2.2.1; python_version < '3.0' lz4; python_version > '3.0' dash==1.21.0; python_version == '2.7' -dash>=1.5.0; python_version > '3.0' +dash>=2.0.0; python_version > '3.0' dash-bio dash-bootstrap-components<=0.10.5; python_version < '3.0' dash-bootstrap-components; python_version > '3.0' diff --git a/setup.py b/setup.py index bbe3d2a5..c34dc523 100644 --- a/setup.py +++ b/setup.py @@ -73,7 +73,7 @@ def run_tests(self): setup( name="dtale", - version="1.58.0", + version="1.58.1", author="MAN Alpha Technology", author_email="ManAlphaTech@man.com", description="Web Client for Visualizing Pandas Objects",