Skip to content

Commit

Permalink
bumped version numbers to 2.12.2
Browse files Browse the repository at this point in the history
  • Loading branch information
aschonfeld committed Feb 7, 2023
1 parent 4b37881 commit 3955e2b
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .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: 2.12.1
VERSION: 2.12.2
PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases
RUN_BLACK: true
python: &python
Expand Down
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Changelog

### 2.12.2 (2023-2-7)
* [#726](https://github.com/man-group/dtale/issues/726): updated `global_state.set_app_settings` to persist updates to instance settings

### 2.12.1 (2023-2-2)
* [#726](https://github.com/man-group/dtale/issues/726): fix for turning off header editor using `dtale.show`

Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ include CHANGES.md
include DESCRIPTION.md
include LICENSE
include requirements.txt
include requirements-redis.txt
include requirements-test.txt
2 changes: 1 addition & 1 deletion docker/dtale.env
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VERSION=2.12.1
VERSION=2.12.2
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 = "2.12.1"
version = "2.12.2"
# The full version, including alpha/beta/rc tags.
release = "2.12.1"
release = "2.12.2"

# 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": "2.12.1",
"version": "2.12.2",
"description": "Visualizer for Pandas Data Structures",
"main": "main.js",
"directories": {
Expand Down
2 changes: 2 additions & 0 deletions requirements-redis.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
redis<=4.4.2
redislite
4 changes: 2 additions & 2 deletions 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="2.12.1",
version="2.12.2",
author="MAN Alpha Technology",
author_email="ManAlphaTech@man.com",
description="Web Client for Visualizing Pandas Objects",
Expand All @@ -88,7 +88,7 @@ def run_tests(self):
"dash-bio==0.7.1; python_version == '2.7'",
],
"r": ["rpy2; python_version > '3.0'"],
"redis": ["redislite"],
"redis": read_file("requirements-redis.txt"),
"streamlit": ["streamlit"],
"swifter": ["swifter"],
"tests": read_file("requirements-test.txt"),
Expand Down
1 change: 0 additions & 1 deletion tests/dtale/test_instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,6 @@ def test_started_with_open_browser():
@pytest.mark.unit
def test_settings_management():
from dtale.views import DtaleData
import dtale.global_state as global_state

with ExitStack() as stack:
mock_default_store = stack.enter_context(
Expand Down

0 comments on commit 3955e2b

Please sign in to comment.