From eb0cd7b62effe9cfc194e2bbd96307ed0066ff28 Mon Sep 17 00:00:00 2001 From: Andrew Schonfeld Date: Fri, 3 Mar 2023 09:58:43 -0500 Subject: [PATCH] bumped version numbers to 2.13.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 5b1736c3..f9b0800a 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.12.3 + VERSION: 2.13.0 PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases RUN_BLACK: true python: &python diff --git a/CHANGES.md b/CHANGES.md index 8fab0a2d..eeb19d54 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ ## Changelog +### 2.13.0 (2023-3-3) +* [#685](https://github.com/man-group/dtale/issues/685): Histogram chart builder +* [#730](https://github.com/man-group/dtale/issues/730): fix for exporting charts with multiple y-axis + ### 2.12.3 (2023-2-22) * Updated D-Tale streamlit startup command to have a wider exception handler for importing `streamlit.server` diff --git a/docker/dtale.env b/docker/dtale.env index 06b047cc..3c7b47d7 100644 --- a/docker/dtale.env +++ b/docker/dtale.env @@ -1,2 +1,2 @@ -VERSION=2.12.3 +VERSION=2.13.0 TZ=America/New_York diff --git a/docs/source/conf.py b/docs/source/conf.py index 372136bd..4de04ef6 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -64,9 +64,9 @@ # built documents. # # The short X.Y version. -version = "2.12.3" +version = "2.13.0" # The full version, including alpha/beta/rc tags. -release = "2.12.3" +release = "2.13.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 02bd679b..4e00f188 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "dtale", - "version": "2.12.3", + "version": "2.13.0", "description": "Visualizer for Pandas Data Structures", "main": "main.js", "directories": { diff --git a/setup.py b/setup.py index fe01d345..84a4a901 100644 --- a/setup.py +++ b/setup.py @@ -72,7 +72,7 @@ def run_tests(self): setup( name="dtale", - version="2.12.3", + version="2.13.0", author="MAN Alpha Technology", author_email="ManAlphaTech@man.com", description="Web Client for Visualizing Pandas Objects",