diff --git a/.circleci/config.yml b/.circleci/config.yml index 8cca69df..1b97d810 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.10.2 + VERSION: 2.11.0 PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases RUN_BLACK: true python: &python diff --git a/CHANGES.md b/CHANGES.md index 164ef59e..b0c7a44a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,10 +1,8 @@ ## Changelog -### 2.10.2 (2023-1-17 - beta) -* Test release for fixing issue with Dash not returning 204s - -### 2.10.1 (2023-1-16 - beta) -* Test release for fixing issue with Dash not returning 204s +### 2.11.0 (2023-1-23) +* [#659](https://github.com/man-group/dtale/issues/659): editing cells with predefined values +* [#692](https://github.com/man-group/dtale/issues/692): updated dash to throw regular exceptions instead of 204s when in Google Colab ### 2.10.0 (2023-1-11) * Updated usage to dash_bootstrap_components.Checkbox to be backwards compatible diff --git a/docker/dtale.env b/docker/dtale.env index 0109f096..0b04a3f9 100644 --- a/docker/dtale.env +++ b/docker/dtale.env @@ -1,2 +1,2 @@ -VERSION=2.10.2 +VERSION=2.11.0 TZ=America/New_York diff --git a/docs/source/conf.py b/docs/source/conf.py index f9aac2d2..28f57b78 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -64,9 +64,9 @@ # built documents. # # The short X.Y version. -version = "2.10.2" +version = "2.11.0" # The full version, including alpha/beta/rc tags. -release = "2.10.2" +release = "2.11.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 5c32ed63..982b9677 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "dtale", - "version": "2.10.2", + "version": "2.11.0", "description": "Visualizer for Pandas Data Structures", "main": "main.js", "directories": { diff --git a/setup.py b/setup.py index e847e03e..8d181e6d 100644 --- a/setup.py +++ b/setup.py @@ -72,7 +72,7 @@ def run_tests(self): setup( name="dtale", - version="2.10.2", + version="2.11.0", author="MAN Alpha Technology", author_email="ManAlphaTech@man.com", description="Web Client for Visualizing Pandas Objects",