From 23f61fb0aac68555ef34a35486e028414a11b346 Mon Sep 17 00:00:00 2001 From: "Andrew Schonfeld (Boston)" Date: Mon, 2 Oct 2023 14:26:11 -0400 Subject: [PATCH] bumped version numbers to 3.7.0 --- .circleci/config.yml | 2 +- CHANGES.md | 3 +++ docker/dtale.env | 2 +- docs/source/conf.py | 4 ++-- frontend/package.json | 2 +- setup.py | 2 +- 6 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f0784e0a..85e869d9 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.6.0 + VERSION: 3.7.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 c1c00745..fb2ee489 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,8 @@ ## Changelog +### 3.7.0 (2023-10-2) +* Turn off "Custom Filter" functionality by default + ### 3.6.0 (2023-9-29) * [#804](https://github.com/man-group/dtale/issues/804): updated summarize code to string join using a pipe instead of comma * [#805](https://github.com/man-group/dtale/issues/805): allow D-Tale to be run under HTTPS diff --git a/docker/dtale.env b/docker/dtale.env index 88c5c7c3..49e0a4be 100644 --- a/docker/dtale.env +++ b/docker/dtale.env @@ -1,2 +1,2 @@ -VERSION=3.6.0 +VERSION=3.7.0 TZ=America/New_York diff --git a/docs/source/conf.py b/docs/source/conf.py index e275e594..b28d2dd9 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -64,9 +64,9 @@ # built documents. # # The short X.Y version. -version = "3.6.0" +version = "3.7.0" # The full version, including alpha/beta/rc tags. -release = "3.6.0" +release = "3.7.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 3bb83fd7..5546e589 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "dtale", - "version": "3.6.0", + "version": "3.7.0", "description": "Visualizer for Pandas Data Structures", "main": "main.js", "directories": { diff --git a/setup.py b/setup.py index 4a50436d..22ad69ae 100644 --- a/setup.py +++ b/setup.py @@ -72,7 +72,7 @@ def run_tests(self): setup( name="dtale", - version="3.6.0", + version="3.7.0", author="MAN Alpha Technology", author_email="ManAlphaTech@man.com", description="Web Client for Visualizing Pandas Objects",