diff --git a/.circleci/config.yml b/.circleci/config.yml index ef41bb8e..3b8e3c63 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -64,7 +64,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: 1.60.0 + VERSION: 1.60.1 PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases RUN_BLACK: true python: &python diff --git a/CHANGES.md b/CHANGES.md index 5bc10e8f..19aec1b9 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,8 @@ ## Changelog +### 1.60.1 (2021-10-31) +* updates for "Time Series Analysis" with aggregation + ### 1.60.0 (2021-10-31) * [#591](https://github.com/man-group/dtale/issues/591): load parquet from UI * [#590](https://github.com/man-group/dtale/issues/590): parquet export diff --git a/docker/dtale.env b/docker/dtale.env index b2dba6ab..ab550279 100644 --- a/docker/dtale.env +++ b/docker/dtale.env @@ -1,2 +1,2 @@ -VERSION=1.60.0 +VERSION=1.60.1 TZ=America/New_York \ No newline at end of file diff --git a/docs/source/conf.py b/docs/source/conf.py index 76f581a6..24f2af99 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -64,9 +64,9 @@ # built documents. # # The short X.Y version. -version = u"1.60.0" +version = u"1.60.1" # The full version, including alpha/beta/rc tags. -release = u"1.60.0" +release = u"1.60.1" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/package.json b/package.json index 6efe1575..250e5c14 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dtale", - "version": "1.60.0", + "version": "1.60.1", "description": "Visualizer for Pandas Data Structures", "main": "main.js", "directories": { diff --git a/setup.py b/setup.py index beaf627f..d3f8d2d5 100644 --- a/setup.py +++ b/setup.py @@ -73,7 +73,7 @@ def run_tests(self): setup( name="dtale", - version="1.60.0", + version="1.60.1", author="MAN Alpha Technology", author_email="ManAlphaTech@man.com", description="Web Client for Visualizing Pandas Objects",