diff --git a/.circleci/config.yml b/.circleci/config.yml index 581005c2..80d545f2 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.1 + VERSION: 2.14.2 PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases python_formatting: &python_formatting parallelism: 1 diff --git a/CHANGES.md b/CHANGES.md index 8b537ba5..4745621d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,9 +1,13 @@ ## Changelog +### 2.14.2 (2023-4-18) +* removed extraneous dependency `soupsieve` + ### 2.14.1 (2023-4-17) * update requirements to no longer pin and allow for older versions of packages * update unit tests to allow for backwards compatibility with older versions of mock library * update how `Flask.url_for` is detected rather than pinning to specific version of python +* separated black & Flake8 code formatting checks into own job in CircleCI ### 2.14.0 (2023-4-10) * [#748](https://github.com/man-group/dtale/issues/748): update auto-generated column deletion code diff --git a/docker/dtale.env b/docker/dtale.env index 606dba1c..0d9208a4 100644 --- a/docker/dtale.env +++ b/docker/dtale.env @@ -1,2 +1,2 @@ -VERSION=2.14.1 +VERSION=2.14.2 TZ=America/New_York diff --git a/docs/source/conf.py b/docs/source/conf.py index 8233c63e..e0e48fd7 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.1" +version = "2.14.2" # The full version, including alpha/beta/rc tags. -release = "2.14.1" +release = "2.14.2" # 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 8cdb608a..a8fe5317 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "dtale", - "version": "2.14.1", + "version": "2.14.2", "description": "Visualizer for Pandas Data Structures", "main": "main.js", "directories": { diff --git a/setup.py b/setup.py index c96f6e42..8197f809 100644 --- a/setup.py +++ b/setup.py @@ -72,7 +72,7 @@ def run_tests(self): setup( name="dtale", - version="2.14.1", + version="2.14.2", author="MAN Alpha Technology", author_email="ManAlphaTech@man.com", description="Web Client for Visualizing Pandas Objects",