diff --git a/.circleci/config.yml b/.circleci/config.yml index beb6fb7b..5c5e689b 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.50.1 + VERSION: 1.51.0 PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases RUN_BLACK: true python: &python diff --git a/CHANGES.md b/CHANGES.md index 81c17f6f..2d71d486 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,14 @@ ## Changelog +### 1.51.0 (2021-7-5) +* [#531](https://github.com/man-group/dtale/issues/531): re-organizing column builder buttons +* [#530](https://github.com/man-group/dtale/issues/530): typo in rolling code snippet +* [#528](https://github.com/man-group/dtale/issues/528): feature analysis +* [#534](https://github.com/man-group/dtale/issues/534): pinned missingno less than or equal to 0.4.2 +* [#523](https://github.com/man-group/dtale/issues/523): upgraded to plotly 5 +* Row height resize functionality +* [#522](https://github.com/man-group/dtale/issues/522): sorting target values in histogram tooltip + ### 1.50.1 (2021-6-24) * [#520](https://github.com/man-group/dtale/issues/520): additional code export update diff --git a/docker/dtale.env b/docker/dtale.env index b3e8a06a..a6d37088 100644 --- a/docker/dtale.env +++ b/docker/dtale.env @@ -1,2 +1,2 @@ -VERSION=1.50.1 +VERSION=1.51.0 TZ=America/New_York \ No newline at end of file diff --git a/docs/source/conf.py b/docs/source/conf.py index 0eeef2e8..2e0c0416 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.50.1" +version = u"1.51.0" # The full version, including alpha/beta/rc tags. -release = u"1.50.1" +release = u"1.51.0" # 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 8d91c1f1..0e6ba15a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dtale", - "version": "1.50.1", + "version": "1.51.0", "description": "Visualizer for Pandas Data Structures", "main": "main.js", "directories": { diff --git a/setup.py b/setup.py index d6fadc87..4d614d32 100644 --- a/setup.py +++ b/setup.py @@ -73,7 +73,7 @@ def run_tests(self): setup( name="dtale", - version="1.50.1", + version="1.51.0", author="MAN Alpha Technology", author_email="ManAlphaTech@man.com", description="Web Client for Visualizing Pandas Objects",