Skip to content

Commit

Permalink
bumped version numbers to 1.44.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aschonfeld committed Apr 27, 2021
1 parent 715ba75 commit cf445cd
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,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: 1.44.0
VERSION: 1.44.1
PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases
RUN_BLACK: true
python: &python
Expand Down Expand Up @@ -181,6 +181,7 @@ python: &python
if [ "${CIRCLE_BRANCH}" == "master" ]; then
set -e
. ci/bin/activate
pip install streamlit
python setup.py build_sphinx
cp -r ./build /tmp/circleci-artifacts
fi
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

### 1.44.1 (2021-4-27)
* [#470(https://github.com/man-group/dtale/issues/470): editing cells for column names with special characters

### 1.44.0 (2021-4-26)
* [#465](https://github.com/man-group/dtale/issues/465): optional authentication
* [#467](https://github.com/man-group/dtale/issues/467): fixed column menu issues when name has special characters
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=1.44.0
VERSION=1.44.1
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 = u"1.44.0"
version = u"1.44.1"
# The full version, including alpha/beta/rc tags.
release = u"1.44.0"
release = u"1.44.1"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
1 change: 0 additions & 1 deletion docs/source/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ scipy
scikit-learn
statsmodels==0.10.2; python_version < '3.0'
statsmodels; python_version > '3.0'
streamlit
xarray
pyarrow
xlrd
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dtale",
"version": "1.44.0",
"version": "1.44.1",
"description": "Visualizer for Pandas Data Structures",
"main": "main.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def run_tests(self):

setup(
name="dtale",
version="1.44.0",
version="1.44.1",
author="MAN Alpha Technology",
author_email="[email protected]",
description="Web Client for Visualizing Pandas Objects",
Expand Down

0 comments on commit cf445cd

Please sign in to comment.