From 57faae453902eb8952134e98581c7ea6e060ee1d Mon Sep 17 00:00:00 2001 From: "Andrew Schonfeld (Boston)" Date: Wed, 31 Jan 2024 16:05:05 -0500 Subject: [PATCH] bumped version numbers to 3.10.0 --- .circleci/config.yml | 2 +- CHANGES.md | 9 ++++++++- docker/dtale.env | 2 +- docs/source/conf.py | 6 +++--- frontend/package.json | 2 +- setup.py | 2 +- 6 files changed, 15 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c9da9012..f69b866e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -70,7 +70,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: 3.9.0 + VERSION: 3.10.0 PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases python_formatting: &python_formatting parallelism: 1 diff --git a/CHANGES.md b/CHANGES.md index 58d7f798..6d9d458c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,13 @@ ## Changelog -### 3.9.0 (2023-11) +### 3.10.0 (2024-1-31) +* Updated front-end packages (namely redux) +* [#843](https://github.com/man-group/dtale/issues/843): Chart export background colors +* [#787](https://github.com/man-group/dtale/issues/787): force colab host to 0.0.0.0 +* [#840](https://github.com/man-group/dtale/issues/840): hide 'View Duplicates' button until column is selected +* [#837](https://github.com/man-group/dtale/issues/837): frequency table search bug + +### 3.9.0 (2024-1-5) * Updated web data uploads to be turned off by default * [#835](https://github.com/man-group/dtale/issues/835): fixed bug with `dtale.show(open_browser=True)` * [#834](https://github.com/man-group/dtale/issues/834): fix for plotly tooltips in charts diff --git a/docker/dtale.env b/docker/dtale.env index 0a0c2587..07b1f423 100644 --- a/docker/dtale.env +++ b/docker/dtale.env @@ -1,2 +1,2 @@ -VERSION=3.9.0 +VERSION=3.10.0 TZ=America/New_York diff --git a/docs/source/conf.py b/docs/source/conf.py index 59597f2d..30575db9 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -56,7 +56,7 @@ # General information about the project. project = "D-Tale" -copyright = "2023, Man Alpha Technology" +copyright = "2024, Man Alpha Technology" author = "Man Alpha Technology" # The version info for the project you're documenting, acts as replacement for @@ -64,9 +64,9 @@ # built documents. # # The short X.Y version. -version = "3.9.0" +version = "3.10.0" # The full version, including alpha/beta/rc tags. -release = "3.9.0" +release = "3.10.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/frontend/package.json b/frontend/package.json index 09842fee..110ed90e 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "dtale", - "version": "3.9.0", + "version": "3.10.0", "description": "Visualizer for Pandas Data Structures", "main": "main.js", "directories": { diff --git a/setup.py b/setup.py index f6205687..9c1fabf9 100644 --- a/setup.py +++ b/setup.py @@ -72,7 +72,7 @@ def run_tests(self): setup( name="dtale", - version="3.9.0", + version="3.10.0", author="MAN Alpha Technology", author_email="ManAlphaTech@man.com", description="Web Client for Visualizing Pandas Objects",