From 2cccc9e5a3886edf3c027d2eaeed4667be6a33e0 Mon Sep 17 00:00:00 2001 From: "Andrew Schonfeld (Boston)" Date: Tue, 10 Sep 2024 09:49:40 -0400 Subject: [PATCH] Bumped version numbers to 3.14.1 --- .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 77510482..9edadad9 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.14.0 + VERSION: 3.14.1 PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases python_formatting: &python_formatting parallelism: 1 diff --git a/CHANGES.md b/CHANGES.md index 748c85a3..3ecc23d2 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,8 @@ ## Changelog +### 3.14.1 (2024-9-10) +* Updated handling of custom queries in chart builder to eliminate security vulnerability + ### 3.14.0 (2024-9-5) * [#880](https://github.com/man-group/dtale/issues/880): int -> bool type conversion updates * [#876](https://github.com/man-group/dtale/issues/876): Raw Pandas zoom diff --git a/docker/dtale.env b/docker/dtale.env index c2c3ccd5..90b72c5a 100644 --- a/docker/dtale.env +++ b/docker/dtale.env @@ -1,2 +1,2 @@ -VERSION=3.14.0 +VERSION=3.14.1 TZ=America/New_York diff --git a/docs/source/conf.py b/docs/source/conf.py index 564c9b1e..a4fd391e 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -64,9 +64,9 @@ # built documents. # # The short X.Y version. -version = "3.14.0" +version = "3.14.1" # The full version, including alpha/beta/rc tags. -release = "3.14.0" +release = "3.14.1" # 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 15c84e88..767feb66 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "dtale", - "version": "3.14.0", + "version": "3.14.1", "description": "Visualizer for Pandas Data Structures", "main": "main.js", "directories": { diff --git a/setup.py b/setup.py index 97cc3e1d..9c5b9ee8 100644 --- a/setup.py +++ b/setup.py @@ -72,7 +72,7 @@ def run_tests(self): setup( name="dtale", - version="3.14.0", + version="3.14.1", author="MAN Alpha Technology", author_email="ManAlphaTech@man.com", description="Web Client for Visualizing Pandas Objects",