Skip to content

Commit

Permalink
Bumped version numbers to 3.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aschonfeld committed Apr 30, 2024
1 parent 23b0595 commit 8707a2b
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 9 deletions.
6 changes: 2 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.11.0
VERSION: 3.12.0
PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases
python_formatting: &python_formatting
parallelism: 1
Expand Down Expand Up @@ -241,9 +241,7 @@ python: &python
if [ "${CIRCLE_BRANCH}" == "master" ]; then
set -e
. ci/bin/activate
pip install pypandoc
pip install docutils
pip install Pygments
pip install -r requirements-docs.txt
grep version setup.py | grep -q $VERSION || (echo "ERROR: Version number not found in setup.py: $VERSION"; exit 1)
grep -q $VERSION CHANGES.md || (echo "ERROR: Version number not found in CHANGES.md: $VERSION"; exit 1)
grep -q $VERSION docker/dtale.env || (echo "ERROR: Version number not found in docker/dtale.env: $VERSION"; exit 1)
Expand Down
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
## Changelog

### 3.12.0 (2024-4-30)
* [#851](https://github.com/man-group/dtale/issues/851): allowing offline_chart to return plotly objects
* [#847](https://github.com/man-group/dtale/issues/847): Add 'Select All' option for duplicate check UI
* [#856](https://github.com/man-group/dtale/issues/856): adding 'Select All' to cumsum and y-axis select in charts
* [#857](https://github.com/man-group/dtale/issues/857): Aggregations popup
* [#858](https://github.com/man-group/dtale/issues/858): added 'view_data' property to data instances
* [#854](https://github.com/man-group/dtale/issues/854): Raw Pandas Output popup

### 3.11.0 (2024-3-6)
* Added extra security around whether a custom query can be used to protected against server-side attacks

Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,12 @@ tmp['d'] = 4
# FYI: this will clear any front-end settings you have at the time for this process (filter, sorts, formatting)
d.data = tmp

# Get raw dataframe w/ any sorting or edits made through the UI
d.data

# Get raw dataframe similar to '.data' along with any filters applied using the UI
d.view_data

# Shutting down D-Tale process
d.kill()

Expand Down
2 changes: 1 addition & 1 deletion docker/dtale.env
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VERSION=3.11.0
VERSION=3.12.0
TZ=America/New_York
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@
# built documents.
#
# The short X.Y version.
version = "3.11.0"
version = "3.12.0"
# The full version, including alpha/beta/rc tags.
release = "3.11.0"
release = "3.12.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dtale",
"version": "3.11.0",
"version": "3.12.0",
"description": "Visualizer for Pandas Data Structures",
"main": "main.js",
"directories": {
Expand Down
3 changes: 3 additions & 0 deletions requirements-docs.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
pypandoc
docutils<=0.20.1
Pygments
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def run_tests(self):

setup(
name="dtale",
version="3.11.0",
version="3.12.0",
author="MAN Alpha Technology",
author_email="ManAlphaTech@man.com",
description="Web Client for Visualizing Pandas Objects",
Expand Down

0 comments on commit 8707a2b

Please sign in to comment.