From 89bc3eb702c08c094fc96642a8cb41b7afe5bd37 Mon Sep 17 00:00:00 2001 From: "Andrew Schonfeld (Boston)" Date: Fri, 23 Jun 2023 07:12:22 -0400 Subject: [PATCH] Bumped version numbers to 3.1.0 --- .circleci/config.yml | 2 +- CHANGES.md | 5 +++++ docker/dtale.env | 2 +- docs/source/conf.py | 4 ++-- frontend/package.json | 2 +- setup.py | 2 +- 6 files changed, 11 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5a19201e..cbafc0bf 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.0.0 + VERSION: 3.1.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 399935bf..23fd6a40 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,10 @@ ## Changelog +### 3.1.0 (2023-6-23) +* Added handling for ArcticDB locations with high libraries & symbols +* Added handling for wide dataframes +* Allowed ArcticDB data paths to passed in from URLs + ### 3.0.0 (2023-6-9) * Added support for ArcticDB as the storage mechanism for pandas dataframes diff --git a/docker/dtale.env b/docker/dtale.env index 809cbbf0..71d18a09 100644 --- a/docker/dtale.env +++ b/docker/dtale.env @@ -1,2 +1,2 @@ -VERSION=3.0.0 +VERSION=3.1.0 TZ=America/New_York diff --git a/docs/source/conf.py b/docs/source/conf.py index bae404fc..048fd3b9 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -64,9 +64,9 @@ # built documents. # # The short X.Y version. -version = "3.0.0" +version = "3.1.0" # The full version, including alpha/beta/rc tags. -release = "3.0.0" +release = "3.1.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 708a6eea..83ff9ab9 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "dtale", - "version": "3.0.0", + "version": "3.1.0", "description": "Visualizer for Pandas Data Structures", "main": "main.js", "directories": { diff --git a/setup.py b/setup.py index b0831a6e..38024430 100644 --- a/setup.py +++ b/setup.py @@ -72,7 +72,7 @@ def run_tests(self): setup( name="dtale", - version="3.0.0", + version="3.1.0", author="MAN Alpha Technology", author_email="ManAlphaTech@man.com", description="Web Client for Visualizing Pandas Objects",