From c5bff0dfbd0bbc5b842df95c27f90993f61bc026 Mon Sep 17 00:00:00 2001 From: Andrew Schonfeld Date: Fri, 15 Oct 2021 10:55:13 -0400 Subject: [PATCH] bumped version numbers to 1.59.1 --- .circleci/config.yml | 2 +- CHANGES.md | 3 +++ docker/dtale.env | 2 +- docs/source/conf.py | 4 ++-- package.json | 2 +- setup.py | 2 +- 6 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6e394a4c..3a99c00a 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.59.0 + VERSION: 1.59.1 PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases RUN_BLACK: true python: &python diff --git a/CHANGES.md b/CHANGES.md index 44add73f..f9c3ca79 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,8 @@ ## Changelog +### 1.59.1 (2021-10-15) +* [#583](https://github.com/man-group/dtale/issues/583): allow for "vertical_headers" to be set from dtale.show + ### 1.59.0 (2021-10-15) * [#581](https://github.com/man-group/dtale/issues/581): Binder proxy handling updates * [#583](https://github.com/man-group/dtale/issues/583): vertical column headers diff --git a/docker/dtale.env b/docker/dtale.env index 57e17c55..1e3ce209 100644 --- a/docker/dtale.env +++ b/docker/dtale.env @@ -1,2 +1,2 @@ -VERSION=1.59.0 +VERSION=1.59.1 TZ=America/New_York \ No newline at end of file diff --git a/docs/source/conf.py b/docs/source/conf.py index 69a45113..8ac22a72 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.59.0" +version = u"1.59.1" # The full version, including alpha/beta/rc tags. -release = u"1.59.0" +release = u"1.59.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 0ea0d6f8..20caa308 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dtale", - "version": "1.59.0", + "version": "1.59.1", "description": "Visualizer for Pandas Data Structures", "main": "main.js", "directories": { diff --git a/setup.py b/setup.py index 47259f0a..d4535c4c 100644 --- a/setup.py +++ b/setup.py @@ -73,7 +73,7 @@ def run_tests(self): setup( name="dtale", - version="1.59.0", + version="1.59.1", author="MAN Alpha Technology", author_email="ManAlphaTech@man.com", description="Web Client for Visualizing Pandas Objects",