Skip to content

Commit ccdde7d

Browse files
committed
Bump version numbers to 3.18.0
1 parent 82072cc commit ccdde7d

File tree

8 files changed

+18
-7
lines changed

8 files changed

+18
-7
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ python_variables: &python_variables
7070
CIRCLE_ARTIFACTS: /tmp/circleci-artifacts
7171
CIRCLE_TEST_REPORTS: /tmp/circleci-test-results
7272
CODECOV_TOKEN: b0d35139-0a75-427a-907b-2c78a762f8f0
73-
VERSION: 3.17.0
73+
VERSION: 3.18.0
7474
PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases
7575
python_formatting: &python_formatting
7676
parallelism: 1

CHANGES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
## Changelog
22

3+
### 3.18.0 (2025-3-20)
4+
* [#912](https://github.com/man-group/dtale/issues/912): translation files not being included in bundle
5+
* [#910](https://github.com/man-group/dtale/issues/910): updates to where 'parse_version' comes from
6+
* [#909](https://github.com/man-group/dtale/issues/909): allow 'theme' to be set from dtale.show
7+
38
### 3.17.0 (2025-3-20)
49
* [#905](https://github.com/man-group/dtale/issues/905): updates for dash 3.0.0
510
* [#902](https://github.com/man-group/dtale/issues/902): fix text wrapping on row detail popup

dash-components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dtale",
3-
"version": "3.17.0",
3+
"version": "3.18.0",
44
"description": "Visualizer for Pandas Data Structures",
55
"main": "index.js",
66
"repository": {

docker/dtale.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
VERSION=3.17.0
1+
VERSION=3.18.0
22
TZ=America/New_York

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@
6464
# built documents.
6565
#
6666
# The short X.Y version.
67-
version = "3.17.0"
67+
version = "3.18.0"
6868
# The full version, including alpha/beta/rc tags.
69-
release = "3.17.0"
69+
release = "3.18.0"
7070

7171
# The language for content autogenerated by Sphinx. Refer to documentation
7272
# for a list of supported languages.

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dtale",
3-
"version": "3.17.0",
3+
"version": "3.18.0",
44
"description": "Visualizer for Pandas Data Structures",
55
"main": "main.js",
66
"directories": {

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def read_file(path):
2525

2626
setup(
2727
name="dtale",
28-
version="3.17.0",
28+
version="3.18.0",
2929
author="MAN Alpha Technology",
3030
author_email="ManAlphaTech@man.com",
3131
description="Web Client for Visualizing Pandas Objects",

tests/dtale/test_views.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,8 @@ def test_startup(unittest):
8585
enable_web_uploads=True,
8686
main_title="test_title",
8787
main_title_font="test_title_font",
88+
theme="dark",
89+
nan_display="N/A",
8890
)
8991

9092
pdt.assert_frame_equal(instance.data, test_data.reset_index())
@@ -112,6 +114,8 @@ def test_startup(unittest):
112114
highlightFilter=False,
113115
main_title="test_title",
114116
main_title_font="test_title_font",
117+
theme="dark",
118+
nanDisplay="N/A",
115119
),
116120
"should lock index columns",
117121
)
@@ -141,6 +145,8 @@ def test_startup(unittest):
141145
highlightFilter=False,
142146
main_title="test_title",
143147
main_title_font="test_title_font",
148+
theme="dark",
149+
nanDisplay="N/A",
144150
),
145151
"should hide header editor",
146152
)

0 commit comments

Comments
 (0)