From 4be729462834e4ba61c0fe5216f3c7335baf9b3b Mon Sep 17 00:00:00 2001 From: "Andrew Schonfeld (Boston)" Date: Fri, 28 Apr 2023 16:38:52 -0400 Subject: [PATCH] bumped version numbers to 2.15.0 --- .circleci/config.yml | 2 +- CHANGES.md | 4 ++++ docker/dtale.env | 2 +- docs/source/conf.py | 4 ++-- frontend/package.json | 2 +- setup.py | 2 +- 6 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6364a5ce..41ef1510 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: 2.14.4 + VERSION: 2.15.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 515ddc1c..7deae349 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ ## Changelog +### 2.15.0 (2023-4-28) +* https://github.com/man-group/dtale/issues/490: stratified random sample in charts +* Updated sklearn column_builders to handle import failures + ### 2.14.4 (2023-4-19) * Added dataclasses requirement for python environments >= 3.6 and < 3.7 diff --git a/docker/dtale.env b/docker/dtale.env index 742c7d86..c53438d0 100644 --- a/docker/dtale.env +++ b/docker/dtale.env @@ -1,2 +1,2 @@ -VERSION=2.14.4 +VERSION=2.15.0 TZ=America/New_York diff --git a/docs/source/conf.py b/docs/source/conf.py index cfb69547..7a72da3f 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -64,9 +64,9 @@ # built documents. # # The short X.Y version. -version = "2.14.4" +version = "2.15.0" # The full version, including alpha/beta/rc tags. -release = "2.14.4" +release = "2.15.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 596791eb..b9836d23 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "dtale", - "version": "2.14.4", + "version": "2.15.0", "description": "Visualizer for Pandas Data Structures", "main": "main.js", "directories": { diff --git a/setup.py b/setup.py index 108122a5..fb0712b1 100644 --- a/setup.py +++ b/setup.py @@ -72,7 +72,7 @@ def run_tests(self): setup( name="dtale", - version="2.14.4", + version="2.15.0", author="MAN Alpha Technology", author_email="ManAlphaTech@man.com", description="Web Client for Visualizing Pandas Objects",